这道题的思路就是:

每一个棋子都有翻转或者不翻转两种修改状态,然后就每个棋子都枚举这两种状态就ok了。

#include<bits/stdc++.h>
using namespace std;
const int M=20;
char mp[M][M];
int mov[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
bool check(int x,int y){
	return x>=0&&x<4&&y>=0&&y<4;
}
bool isok(){
	for(int i=0;i<4;i++){
		for(int j=0;j<4;j++){
			if(mp[i][j]!=mp[0][0])
				return false;
		}
	}
	return true;
}
void change(int x,int y){
	if(mp[x][y]=='b'){
		mp[x][y]='w';
	}	
	else if(mp[x][y]=='w')	mp[x][y]='b';
	for(int i=0;i<4;i++){
		int xx=x+mov[i][0];
		int yy=y+mov[i][1];
		if(check(xx,yy)){
			if(mp[xx][yy]=='b'){
				mp[xx][yy]='w';
				continue;
			}	
			if(mp[xx][yy]=='w')	mp[xx][yy]='b';
		}
	}
}
int vis[M][M];
int ans=0x3f3f3f3f;
void dfs(int x,int y,int step){
//	cout<<step<<endl;
	if(isok()){
		ans=min(ans,step);
		return;
	}
	if(!check(x,y)) return;
	int newy=(y+1)%4;
	int newx=x+(y+1)/4;
	dfs(newx,newy,step);
	change(x,y);
	dfs(newx,newy,step+1);
	change(x,y);
}
int main(){
	for(int i=0;i<4;i++){
		for(int j=0;j<4;j++){
			cin>>mp[i][j];
		}
	}
	dfs(0,0,0);
	if(ans==0x3f3f3f3f)	cout<<"Impossible";
	else
		cout<<ans<<endl;
	return 0;
}