• poj 2251 Dungeon Master


    http://poj.org/problem?id=2251

    Dungeon Master
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 18773   Accepted: 7285

    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!


    分析:
    典型的三维广搜。

    AC代码:
     1 #include<cstdio>
     2 #include<cstring>
     3 #include<queue>
     4 using namespace std;
     5 
     6 #define INF 0x3f3f3f3f
     7 
     8 char maz[31][31][31];
     9 int d[31][31][31];
    10 int sx,sy,sz;
    11 int ex,ey,ez;
    12 int dx[6] = {1,-1,0,0,0,0};
    13 int dy[6] = {0,0,1,-1,0,0};
    14 int dz[6] = {0,0,0,0,1,-1};
    15 int X,Y,Z;
    16 struct P{
    17     int x,y,z;
    18     P(int xx,int yy,int zz) :x(xx),y(yy),z(zz) {
    19     }
    20 };
    21 
    22 int bfs() {
    23     memset(d,INF,sizeof(d));
    24     queue<P> que;
    25     que.push(P(sx,sy,sz));
    26     d[sx][sy][sz] = 0;
    27 
    28     
    29     while(que.size()) {
    30         P p = que.front();que.pop();
    31         
    32         if(p.x == ex && p.y == ey && p.z == ez) break;
    33         
    34         for(int i = 0;i < 6;i++) {
    35             int nx = p.x + dx[i];
    36             int ny = p.y + dy[i];
    37             int nz = p.z + dz[i];
    38             
    39             if(0 <= nx && nx < X && 0 <= ny && ny < Y && 0 <= nz && nz < Z
    40             && maz[nx][ny][nz] != '#' && d[nx][ny][nz] == INF) {
    41                 que.push(P(nx,ny,nz));
    42                 d[nx][ny][nz] = d[p.x][p.y][p.z] + 1;
    43             }
    44         }
    45     } 
    46     if(d[ex][ey][ez] == INF) return -1;
    47     return d[ex][ey][ez];
    48 }
    49 
    50 int main() {
    51     while(~scanf("%d %d %d",&X,&Y,&Z)) {
    52         if(X == 0 && Y == 0 && Z == 0) break;
    53         for(int i = 0;i < X;i++) {
    54             for(int j = 0;j < Y;j++) {
    55                 scanf("%s",maz[i][j]);
    56                 for(int k = 0;k < Z;k++) {
    57                     if(maz[i][j][k] == 'S') {
    58                         sx = i;
    59                         sy = j;
    60                         sz = k;
    61                     } else if(maz[i][j][k] == 'E') {
    62                         ex = i;
    63                         ey = j;
    64                         ez = k;
    65                     }
    66                 }
    67             }
    68         }
    69     
    70         
    71         int res = bfs();
    72         if(res == -1) {
    73             printf("Trapped!
    ");
    74         } else {
    75             printf("Escaped in %d minute(s).
    ",res);
    76         }
    77     }
    78     return 0;
    79 }
    View Code
  • 相关阅读:
    刷题总结——蚯蚓(NOIP2016DAY2T2)
    刷题总结——愤怒的小鸟(NOIPDAY2T3)
    算法复习——高斯消元(ssoi)
    算法复习——高精度集合
    刷题总结——系列维护(ssoi)
    刷题总结——传送带(四川省选)
    算法复习——数位dp(不要62HUD2089)
    算法复习——单调队列(sliding windows,ssoi)
    刷题总结——road(ssoi)
    linux命令学习笔记(61):tree 命令
  • 原文地址:https://www.cnblogs.com/jeff-wgc/p/4477586.html
Copyright © 2020-2023  润新知