hdu 2102 A计划(bfs)

来源:互联网 发布:彩票代买软件 编辑:程序博客网 时间:2024/04/30 07:28

Problem Description
可怜的公主在一次次被魔王掳走一次次被骑士们救回来之后,而今,不幸的她再一次面临生命的考验。魔王已经发出消息说将在T时刻吃掉公主,因为他听信谣言说吃公主的肉也能长生不老。年迈的国王正是心急如焚,告招天下勇士来拯救公主。不过公主早已习以为常,她深信智勇的骑士LJ肯定能将她救出。
现据密探所报,公主被关在一个两层的迷宫里,迷宫的入口是S(0,0,0),公主的位置用P表示,时空传输机用#表示,墙用*表示,平地用.表示。骑士们一进入时空传输机就会被转到另一层的相对位置,但如果被转到的位置是墙的话,那骑士们就会被撞死。骑士们在一层中只能前后左右移动,每移动一格花1时刻。层间的移动只能通过时空传输机,且不需要任何时间。
 

Input
输入的第一行C表示共有C个测试数据,每个测试数据的前一行有三个整数N,M,T。 N,M迷宫的大小N*M(1 <= N,M <=10)。T如上所意。接下去的前N*M表示迷宫的第一层的布置情况,后N*M表示迷宫第二层的布置情况。
 

Output
如果骑士们能够在T时刻能找到公主就输出“YES”,否则输出“NO”。
 

Sample Input
15 5 14S*#*..#........****....#...*.P#.*..***.....*.*.#..
 

Sample Output
YES

基础bfs


  1.  
  2. #include <iostream>

    #include <stdio.h>

    #include <queue>

    #include <string.h>

    using namespace std;

    int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};

    char map[2][15][15];

    bool vis[2][15][15];

    int n,m,t;

    struct node

    {

        int x,y,z;

        int step;

        node(int x=0,int y=0,int z=0,int step=0)

        {

            this->x=x;

            this->y=y;

            this->z=z;

            this->step=step;

        }

    };

    bool check(int x,int y,int z)

    {

        if(x<0|| x>=n || y<0 || y>=m ||map[z][x][y]=='*' )

        {

            return false;

        }

        return true;

    }


    bool bfs()

    {

        queue<node>q;

        q.push(node(0,0,0,t));

        vis[0][0][0]=1;

        node temp,t;

        while (!q.empty())

        {

            t=q.front();

            q.pop();

            for (int i=0; i<4; i++)

            {

                temp=t;

                temp.x+=dir[i][0];

                temp.y+=dir[i][1];

                temp.step--;

                if(temp.step<0)

                    return false;

                    

                if(check(temp.x, temp.y,temp.z) && !vis[temp.z][temp.x][temp.y])

                {

                    if(map[temp.z][temp.x][temp.y]=='#')

                        temp.z^=1;

                    

                    if(map[temp.z][temp.x][temp.y]=='P')

                        return true;

                    

                    else if(map[temp.z][temp.x][temp.y]!='*')

                    {

                        vis[temp.z][temp.x][temp.y]=1;

                        q.push(temp);

                    }

                }

                

            }

        }

        return false;

        

    }

    int main()

    {

        int c;

        scanf("%d",&c);

        while (c--)

        {

            scanf("%d%d%d",&n,&m,&t);

            memset(vis,false, sizeof(vis));

            getchar();

            for (int i=0; i<2; i++)

            {

                for (int j=0; j<n; j++)

                {

                    scanf("%s",map[i][j]);

                }

                getchar();

            }

            for (int i=0; i<2; i++)

            {

                for (int j=0; j<n; j++)

                {

                    for (int k=0; k<m; k++)

                    {

                       if(map[i][j][k]=='#' &&map[1^i][j][k]=='*')

                           map[i][j][k]='*';

                       if(map[i][j][k]=='#' &&map[1^i][j][k]=='#')

                           map[i][j][k]=map[1^i][j][k]='*';

                    }

                }

            }

            if(bfs())

                puts("YES");

            else

                puts("NO");

        }

        return 0;

    }






0 0