POJ 2251 BFS(简单)

一道三维的BFS
Dungeon Master
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 24003 Accepted: 9332
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!

题意:
一个能向东西南北前后走的人,,”#“是墙,“.”是路,问从“S”到“E” 的最少步数。

一个明显的BFS ,,, 除了是三维的没有任何难度

#include <cstdio>
#include <cstring>
#include <queue>
#include <iostream>
using namespace std;
char a[66][66][66];
int l,r,c,sx,sy,sz,vis[66][66][66];
int xx[]={1,-1,0,0,0,0},yy[]={0,0,1,-1,0,0},zz[]={0,0,0,0,1,-1};
int bfs()
{
    queue<int> q,w,e;
    q.push(sx);w.push(sy);e.push(sz);
    while(!q.empty())
    {
        int x=q.front(),y=w.front(),z=e.front();
        q.pop();w.pop();e.pop();
        if(a[x][y][z]=='E') return vis[x][y][z];
        for(int i=0;i<6;i++)
        {
            int dx=x+xx[i],dy=y+yy[i],dz=z+zz[i];
            if(dx<1||dx>l||dy<1||dy>r||dz<1||dz>c||a[dx][dy][dz]=='#'||vis[dx][dy][dz])
                continue;
            q.push(dx);w.push(dy);e.push(dz);
            vis[dx][dy][dz]=vis[x][y][z]+1;
        }
    }
    return 0;
}
int main()
{
    while(scanf("%d%d%d",&l,&r,&c)&&l)
    {
        memset(a,0,sizeof(a));
        memset(vis,0,sizeof(vis));
        for(int i=1;i<=l;i++)
        {
            for(int j=1;j<=r;j++)
            {
                for(int k=1;k<=c;k++)
                {
                    cin>>a[i][j][k];
                    if(a[i][j][k]=='S')
                    {
                        sx=i;sy=j;sz=k;
                    }
                }
            }
        }
        int k=bfs();
        k?printf("Escaped in %d minute(s).
",k):printf("Trapped!
");
    } 
} 

这里写图片描述

原文地址:https://www.cnblogs.com/SiriusRen/p/5831190.html