1008.Gnome Tetravex

原题大意:判断相邻的正方形块能否拼成三角形标号相邻的在一起。

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

一开始看到有点懵逼 判断的条件很简单,但不知道怎么去实现,看了网上的代码发现还是用深搜,回溯法,啊搜索算法还要好好学啊。。。

详细的思路见代码注释


#include <stdio.h>
#include <string.h>

int n ;
int a[ 25 ][ 4 ] ;
int state[ 25 ] ;  //用来标记每一种正方形出现的次数
int result[ 25 ] ;
int q ;

int Game ( int index )
{
    int i ;
    if ( index == n*n )
        return 1 ;
    else
    {
        for ( i = 0 ; i < q ; i ++ )
        {
            // 如果该位置被用完则跳过
            if ( state[ i ] == 0 )
                continue ;
            else
            {
                // 排掉最上面那一排 同时下面和上面相等
                if ( index >= n && a[ i ][ 0 ] != a[ result[ index-n ] ][ 2 ] )
                    continue ;

                // 排掉最左边那一列 同时 右边和左边相等
                if ( index%n != 0 && a[ result[ index - 1] ][ 1 ] != a[ i ][ 3 ] )
                    continue ;

                state[ i ] -- ;
                result[ index ] = i ;  //如果能到这说明找到了一个合适的
                if ( Game( index+1 ) )  // 递归继续找,如果找到了就返回1
                    return 1 ;
                state[ i ] ++ ;           // 回溯 如果不成功再试i++ 但在试之前,要把原来的状态改动改回来
            }
        }
    }
    return 0;
}
int main ( )
{
    int num = 0 ;
    memset ( a , 0 , sizeof( a ) ) ;
    memset ( state , 0 , sizeof( state ) ) ;
    memset ( result , 0 , sizeof( result ) ) ;
    while ( scanf("%d",&n) , n )
    {
        num++ ;
        q = 0 ;
        int i , j , top , right , bottom , left ;
        for ( i = 0 ; i < n*n ; i ++ )
        {
            scanf("%d %d %d %d",&top , &right , &bottom , &left );
     //       printf("0k\n");
            for ( j = 0 ; j < q ; j ++ )
            {
                /* 把相同的正方形标记 */
                if ( a[ j ][ 0 ] == top && a[ j ][ 1 ] == right && a[ j ][ 2 ] == bottom && a[ j ][ 3 ] == left )
                {
                    state[ j ] ++ ;
                    break;
                }
            }
            if ( j == q )
            {
                a[ j ][ 0 ] = top ;
                a[ j ][ 1 ] = right ;
                a[ j ][ 2 ] = bottom ;
                a[ j ][ 3 ] = left ;
                state[ q ] = 1 ;
                q ++ ;      //q为有效的正方形的个数即互不相同
            }
        }
        // 每个结果之间都要有空行
        if ( num > 1 )
            printf("\n");

        printf("Game %d: ", num );
        if ( Game ( 0 ) )
            printf("Possible\n");
        else
            printf("Impossible\n");
    }
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值