首页 > 代码库 > poj 1753
poj 1753
Flip Game
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 31623 | Accepted: 13758 |
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:
Consider the following position as an example:
bwbw
wwww
bbwb
bwwb
Here "b" denotes pieces lying their black side up and "w" denotes pieces lying their white side up. If we choose to flip the 1st piece from the 3rd row (this choice is shown at the picture), then the field will become:
bwbw
bwww
wwwb
wwwb
The goal of the game is to flip either all pieces white side up or all pieces black side up. You are to write a program that will search for the minimum number of rounds needed to achieve this goal.
- 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).
Consider the following position as an example:
bwbw
wwww
bbwb
bwwb
Here "b" denotes pieces lying their black side up and "w" denotes pieces lying their white side up. If we choose to flip the 1st piece from the 3rd row (this choice is shown at the picture), then the field will become:
bwbw
bwww
wwwb
wwwb
The goal of the game is to flip either all pieces white side up or all pieces black side up. You are to write a program that will search for the minimum number of rounds needed to achieve this goal.
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
Source
Northeastern Europe 2000
/*ID :KvpMrank1status:AC*/ #include<iostream>#include<cstdio>#include<cstring>#include<string>#include<cstdlib>#include<cmath>#include<algorithm>using namespace std;char c;int chess[20],ans=0;bool flag;void solve(int l){ chess[l]^=1;//位运算 if(l%4!=1)chess[l-1]^=1;if(l%4!=0)chess[l+1]^=1;if(l>4)chess[l-4]^=1;if(l<13)chess[l+4]^=1;}bool check(){ for(int i=2;i<=16;i++)if(chess[i]!=chess[i-1])return false;return true;} void dfs(int num,int ci,int sum)//num为第几个棋子,ci填第几次,sum一共填几次; { if(ci==sum) { flag=check(); return ; } for(int i=num+1;i<=16;i++) { solve(i); dfs(i,ci+1,sum); if(flag) return ; solve(i);//回溯 }}int main(){ memset(chess,0,sizeof(chess)); for(int i=1;i<=16;i++) { cin>>c; if(c==‘b‘) chess[i]=1; else chess[i]=0; } flag=check();if(flag) printf("0\n");else{ for(int i=1;i<=16;i++) { flag=false; dfs(0,0,i); if(flag) { ans=i; break; } } if(flag) printf("%d\n",ans); else printf("Impossible\n");} //system("pause"); return 0;}
poj 1753
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。