ZOJ 1008 Gnome Tetravex

共 5265字,需浏览 11分钟

 ·

2023-03-07 23:21


Gnome Tetravex


Time Limit: 10000 msMemory Limit: 32768 KB

Hart is engaged in playing an interesting game, Gnome Tetravex, these days. In the game, at the beginning, the player is given n*n squares. Each square is divided into four triangles marked four numbers (range from 0 to 9). In a square, the triangles are the left triangle, the top triangle, the right triangle and the bottom triangle. For example, Fig. 1 shows the initial state of 2*2 squares.


Fig. 1 The initial state with 2*2 squares

The player is required to move the squares to the termination state. In the termination state, any two adjoining squares should make the adjacent triangle marked with the same number. Fig. 2 shows one of the termination states of the above example.


Fig. 2 One termination state of the above example

It seems the game is not so hard. But indeed, Hart is not accomplished in the game. He can finish the easiest game successfully. When facing with a more complex game, he can find no way out.

One day, when Hart was playing a very complex game, he cried out, "The computer is making a goose of me. It's impossible to solve it." To such a poor player, the best way to help him is to tell him whether the game could be solved. If he is told the game is unsolvable, he needn't waste so much time on it.


Input

The input file consists of several game cases. The first line of each game case contains one integer n, 0 <= n <= 5, indicating the size of the game.

The following n*n lines describe the marking number of these triangles. Each line consists of four integers, which in order represent the top triangle, the right triangle, the bottom triangle and the left triangle of one square.

After the last game case, the integer 0 indicates the termination of the input data set.


Output

You should make the decision whether the game case could be solved. For each game case, print the game number, a colon, and a white space, then display your judgment. If the game is solvable, print the string "Possible". Otherwise, please print "Impossible" to indicate that there's no way to solve the problem.

Print a blank line between each game case.

Note: Any unwanted blank lines or white spaces are unacceptable.


Sample Input

2
5 9 1 4
4 4 5 6
6 8 5 4
0 4 4 3
2
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
0


Output for the Sample Input

Game 1: Possible

Game 2: Impossible


Gnome Tetravex


这些天,哈特一直在玩一个有趣的游戏,Gnome Tetravex。在游戏开始时,给玩家n*n个方格。每个正方形被分成四个三角形,标记着四个数字(范围从0到9)。在一个正方形中,三个三角形分别是左三角形、上三角形、右三角形和下三角形。例如,图1显示了2*2方块的初始状态。

图1 2*2方块的初始状态


玩家需要将方块移动到终止状态。在终止状态下,任意两个相邻的正方形应使相邻三角形标记相同的编号。图2显示了上述示例的终止状态之一。

图2上述示例的一个终止状态


看来这个游戏没那么难。但事实上,哈特并没有在比赛中取得成功。他可以成功完成最简单的游戏。当面对更复杂的游戏时,他找不到出路。


有一天,哈特正在玩一个非常复杂的游戏,他喊道:“电脑把我弄糊涂了。”不可能解决这个问题。”对于这样一个糟糕的玩家来说,帮助他的最好方法是告诉他游戏是否可以被解决。如果他被告知这个游戏是无法解决的,他就不必浪费那么多时间。


输入

输入文件由几个游戏案例组成。每个游戏案例的第一行包含一个整数n, 0 <= n <= 5,表示游戏的大小。


下面n*n行描述了这些三角形的标记数。每条线由四个整数组成,依次代表一个正方形的顶部三角形、右边三角形、底部三角形和左边三角形。


在最后一个游戏案例之后,整数0表示输入数据集的终止。


输出

你应该决定游戏案件是否可以解决。对于每个游戏案例,打印游戏编号、冒号和空格,然后显示您的判断。如果游戏是可解的,则打印字符串"Possible"。否则,请打印“不可能”,表示没有办法解决这个问题。


在每个游戏案例之间打印一个空白行。


注意:任何不想要的空白行或空白都是不可接受的。


Sample Input

2
5 9 1 4
4 4 5 6
6 8 5 4
0 4 4 3
2
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
0


Output for the Sample Input

Game 1: Possible

Game 2: Impossible



题意:

我们先从这些卡片中任意选取一个,放置在1行1列,然后选取下一个卡片放置到1行2列,放置的时候我们要像判断皇后(八皇后问题)是不是冲突一样判断这个卡片放置后是不是会满足相邻的卡片的相邻数字是不是相等,如果相等我们就继续放置下一个位置,如果不相等,那么就换下一个卡片放置,如果都不行,那么我们应该返回重新放置前面一个卡片,依次类推。。。。


代码:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int cur;//当前的方块标号
int count[30],map[30][4];//count[i]表示i方块的数量,map[][]用于存储方块信息(每个方块由四个三角形组成)
int result[30];//result[num] = i表示第i个方块可以放到num的位置


int dfs(int num,int n)
{
int i;
if(num==n*n) return 1;//如果全部放置成功,返回1
for(i=0;i<cur;i++)//对于cur种方块遍历
{
if(!count[i])
continue;//如果这种方块用完了,继续
if(num%n!=0)//如果不在第一列放置,需要满足新放置的方块的左边的数字等于它前一个的右边的数字(如果在第一列放置,没有限制)
if(map[i][3]!=map[result[num-1]][1])
continue;//如果不满足上述条件,说明这个方块不符合,继续寻找其他方块
if(num/n!=0)//如果不在第一行放置,需要满足新放置的方块的上边的数字等于它上一个的下边的数字(如果在第一行放置,没有限制)
if(map[i][0]!=map[result[num-n]][2])
continue;
result[num]=i;//第i个方块可以放到num的位置
count[i]--;//放置成功,这种方块的数目减一
if(dfs(num+1,n))
return 1;//如果深度遍历的结果都为1,说明全部放置成功(只有全部放置成功才会返回1)
count[i]++;//只要有一个地方无法继续遍历,返回,记得i方块的数目要加回去
result[num]=0;//写不写都可以,因为回溯的时候num不可能达到这里的num(num在变小,回溯嘛)
}
return 0;
}


int main()
{
int n,i,j,a,b,c,d,ok=0,kase=0;
while(scanf("%d",&n)&&n)
{
cur=0;
memset(count,0,sizeof(count));//每次输入都记得把方块的信息清零
for(i=0;i<n*n;i++)
{
scanf("%d%d%d%d",&a,&b,&c,&d);
for(j=0;j<cur;j++)
if(map[j][0]==a&&map[j][1]==b&&map[j][2]==c&&map[j][3]==d)
{
count[j]++;//合并完全相同的方块,剪枝,降低时间复杂度
break;
}
if(j==cur)//如果这个方块跟之前的所有方块都不同,加入这个方块的信息
{
map[cur][0]=a;
map[cur][1]=b;
map[cur][2]=c;
map[cur][3]=d;
count[cur]++;//这种方块数目加一
cur++;//方块总数加一
}
}
if(!ok)
ok=1;//这里的输出格式略坑,注意一下
else printf("\n");
kase++;
if(dfs(0,n))
printf("Game %d: Possible\n",kase);
else
printf("Game %d: Impossible\n",kase);
}
return 0;
}


浏览 60
点赞
评论
收藏
分享

手机扫一扫分享

分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

分享
举报