Description
Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other one is black and each piece is lying either it's black or white side up. Each round you flip 3 to 5 pieces, thus changing the color of their upper side from black to white and vice versa. The pieces to be flipped are chosen every round according to the following rules:
- Choose any one of the 16 pieces.
- Flip the chosen piece and also all adjacent pieces to the left, to the right, to the top, and to the bottom of the chosen piece (if there are any).
Input
The input consists of 4 lines with 4 characters "w" or "b" each that denote game field position.
Output
Write to the output file a single integer number - the minimum number of rounds needed to achieve the goal of the game from the given position. If the goal is initially achieved, then write 0. If it's impossible to achieve the goal, then write the word "Impossible" (without quotes).
Sample Input
bwwbbbwbbwwbbwww
Sample Output
4
#include#include #include char map[6][6],copy[6][6],str[20]; const int INF=666; int ans; int flag[6][6]; bool Check(char copy[][6]){ //检查所有棋子是不是都是一样的颜色 char ch=copy[0][0]; for(int i=0;i<4;i++) for(int j=0;j<4;j++) if(copy[i][j]!=ch) return false; return true; } void Change(int i,int j){ //棋子颜色的翻转 copy[i][j]=(char)('b'+'w'-copy[i][j]); if(i!=0) copy[i-1][j]=(char)('b'+'w'-copy[i-1][j]); if(j!=0) copy[i][j-1]=(char)('b'+'w'-copy[i][j-1]); if(i!=3) copy[i+1][j]=(char)('b'+'w'-copy[i+1][j]); if(j!=3) copy[i][j+1]=(char)('b'+'w'-copy[i][j+1]); } void BFS(){ //暴力搜索加位运算 if(Check(map))//若是本身就已经是满足的情况,就不必翻转 ans=0; else for(int t=1;t<65536;t++){ //枚举所有的翻转情况,并且分析 int num=t; int step=0; for(int coi=0;coi<4;coi++) for(int coj=0;coj<4;coj++) copy[coi][coj]=map[coi][coj];//复制棋子图 for(int i=