#include<iostream>
#include<cstring>
using namespace std;
int minstep;
typedef struct rec{
int b;
int w;
int step;
int H[4][4];
};
int dir[5][2]={{0,0},{-1,0},{1,0},{0,-1},{0,1}};
void dfs(rec R,int pos){
if(pos>16)return;
if(R.b==16||R.w==16){
if(R.step<minstep){
minstep=R.step;
return;
}
}
int x,y,i,j,x1,y1;
rec r;
x=pos/4;
y=pos%4;
dfs(R,pos+1);
memcpy(&r,&R,sizeof(R));
for(i=0;i<5;i++){
x1=x+dir[i][0];
y1=y+dir[i][1];
if(x1<0||x1>3||y1<0||y1>3)
continue;
if(r.H[x1][y1]==0){
r.H[x1][y1]=1;
r.b++;
r.w--;
}
else{
r.H[x1][y1]=0;
r.b--;
r.w++;
}
}
r.step++;
dfs(r,pos+1);
}
int main(){
int i,j,b=0,w=0;
rec R;
char c;
for(i=0;i<4;i++)
for(j=0;j<4;j++){
cin>>c;
if(c=='b'){
R.H[i][j]=1;
b++;
}
else{
R.H[i][j]=0;
w++;
}
}
R.b=b;
R.w=w;
R.step=0;
if(R.b==16||R.w==16){
cout<<"0"<<endl;
}
else{
minstep=10000000;
dfs(R,0);
if(minstep==10000000){
cout<<"Impossible"<<endl;
}
else{
cout<<minstep<<endl;
}
}
return 0;
}
poj-1573
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 题意就不多说了,就是问那种方式可以把所有的灯都关掉.直接一波位运算,因为是6列,所以一个char型就可以存下来了....
- 原题链接 Apple Tree 题意 一棵多叉树每个结点有一个编号和一个值,在已知树的结构的情况下,进行两种操作。...