Flip Game
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 31140 | Accepted: 13551 |
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
bwwb bbwb bwwb bwww
Sample Output
4
#include<stdio.h>
#include<algorithm>
using namespace std;
const int row = 4, col = 4;
typedef unsigned int unit;
const unit allup = 0x0000ffff, alldown = 0;
int res = row * col;
void turn(int i, int j, unit& x) {
if (i >= 0 && i < row && j >= 0 && j < col) {
int idx = i*col+j;
x ^= (1 << idx);
}
}
void flip(int i, int j, unit& x) {
turn(i,j,x);
turn(i+1,j,x);
turn(i-1,j,x);
turn(i,j+1,x);
turn(i,j-1,x);
}
void dfs(int s, int cnt, unit& x) {
if (x == allup || x == alldown) {
res = min(res, cnt);
return;
}
if (s >= row*col)
return;
dfs(s+1, cnt, x);
int i = s / row, j = s % row;
flip(i,j,x);
dfs(s+1, cnt+1, x);
flip(i,j,x);
}
int main() {
int i, j, idx;
freopen("E:\\test.txt","r",stdin);
unit init = 0, allup = 0x00ff, alldown = 0;
char ch;
for (i = 0; i < row; ++i) {
for (j = 0; j < col; ++j) {
scanf("%c",&ch);
idx = i*col+j;
if (ch == 'b')
init |= (1<<idx);
}
scanf("%c",&ch);
}
dfs(0,0,init);
if (res != row*col)
printf("%d\n",res);
else
printf("Impossible\n");
return 0;
}

本文介绍了一款名为FlipGame的游戏,该游戏在一个4x4的棋盘上进行,目标是通过最少的翻转次数使所有棋子颜色统一。文章提供了一个算法解决方案,用于计算达到游戏目标所需的最小翻转轮数。
819

被折叠的 条评论
为什么被折叠?



