zoukankan      html  css  js  c++  java
  • POJ 2251:Dungeon Master(三维BFS)

    Time Limit: 1000MS
    Memory Limit: 65536K
    Total Submissions: 16178
    Accepted: 6268

    Description

    You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one unit north, south, east, west, up or down. You cannot move diagonally and the maze is surrounded by solid rock on all sides.

    Is an escape possible? If yes, how long will it take?

    Input

    The input consists of a number of dungeons. Each dungeon description starts with a line containing three integers L, R and C (all limited to 30 in size).
    L is the number of levels making up the dungeon.
    R and C are the number of rows and columns making up the plan of each level.
    Then there will follow L blocks of R lines each containing C characters. Each character describes one cell of the dungeon. A cell full of rock is indicated by a '#' and empty cells are represented by a '.'. Your starting position is indicated by 'S' and the exit by the letter 'E'. There's a single blank line after each level. Input is terminated by three zeroes for L, R and C.

    Output

    Each maze generates one line of output. If it is possible to reach the exit, print a line of the form
    Escaped in x minute(s).

    where x is replaced by the shortest time it takes to escape.
    If it is not possible to escape, print the line
    Trapped!

    Sample Input

    3 4 5
    S....
    .###.
    .##..
    ###.#
    
    #####
    #####
    ##.##
    ##...
    
    #####
    #####
    #.###
    ####E
    
    1 3 3
    S##
    #E#
    ###
    
    0 0 0
    

    Sample Output

    Escaped in 11 minute(s).
    Trapped!
    


    3维的迷宫。仅仅须要加上上下两个方向即可了,其它的就是简单的bfs。

    開始就是在推断那个进队的if语句中。。应该是map[xx][yy][zz]!='#', 開始写成了map[xx][yy][zz]=='.'。所以害我调了一会。。


    #include<cstdio>
    #include<iostream>
    #include<cstring>
    #include<queue>
    #include<algorithm>
    #include<vector>
    
    using namespace std;
    
    const int N = 105;
    
    char map[N][N][N];
    int vist[N][N][N];
    
    struct node
    {
        int x;
        int y;
        int z;
        int num;
    };
    queue<node>q;
    
    int dx[]={1,-1,0,0,0,0};
    int dy[]={0,0,0,0,-1,1};
    int dz[]={0,0,-1,1,0,0};
    int flag;
    int t, n, m;
    int xx, yy, zz;
    
    void bfs()
    {
        flag = 0;
        while( !q.empty() )
        {
            node temp = q.front();
            //cout<<map[temp.x][temp.y][temp.z]<<" ";
            //printf( "%d %d %d
    ", temp.x, temp.y, temp.z );
            if( map[temp.x][temp.y][temp.z]=='E' )
            {
                printf("Escaped in %d minute(s).
    ", temp.num);
                flag = 1;
                //printf("1
    ");
                break;
            }
            q.pop();
            for( int i=0; i<6; i++ )
            {
                xx = temp.x + dx[i];
                yy = temp.y + dy[i];
                zz = temp.z + dz[i];
                //printf( "%d %d %d
    " ,xx,yy,zz);
                if( xx>=1 && xx<=t && yy>=1 && yy<=n &&zz>=1 && zz<=m && !vist[xx][yy][zz] && map[xx][yy][zz]!='#' )
                {
                    node next;
                    next.x = xx; next.y = yy; next.z = zz; next.num = temp.num+1;
                    //printf( "%d %d %d
    ", xx, yy, zz );
                    vist[xx][yy][zz] = true;
                    q.push( next );
                }
            }
        }
        if( !flag )
            printf("Trapped!
    ");
    }
    
    int main()
    {
        while( scanf("%d%d%d", &t, &n, &m) &&t &&n &&m )
        {
            node first;
            while( !q.empty() )  q.pop();
            memset( vist, false, sizeof( vist ) );
            for(int i=1; i<=t; i++)
                for(int j=1; j<=n; j++)
                    for(int k=1; k<=m; k++)
                    {
                        cin>>map[i][j][k];
                        if( map[i][j][k]=='S' )
                        {
                            first.x = i;
                            first.y = j;
                            first.z = k;
                        }
                    }
           first.num=0;
           vist[first.x][first.y][first.z] = true;
           q.push( first );
           bfs();
        }
    
        return 0;
    }
    










  • 相关阅读:
    杨玲 201771010133《面向对象程序设计(java)》第三周学习总结
    杨玲 201771010133《面向对象程序设计(java)》第二周学习总结
    杨玲 201771010133 《面向对象程序设计(java)》第一周学习总结
    bzoj1010 [HNOI2008]玩具装箱toy
    hdu5115 Dire Wolf
    bzoj2880
    bzoj2301 [HAOI2011]Problem b
    bzoj2440 [中山市选2011]完全平方数
    bzoj4448 情报传递
    bzoj4445 小凸想跑步
  • 原文地址:https://www.cnblogs.com/lxjshuju/p/6978853.html
Copyright © 2011-2022 走看看