zoukankan      html  css  js  c++  java
  • 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!
    ");
        } 
    } 

    这里写图片描述

  • 相关阅读:
    无法启动调试--未安装 Silverlight Developer 运行时。请安装一个匹配版本。
    jQuery导航菜单防刷新
    IE6下Png透明最佳解决方案(推荐) Unit PNG Fix
    每周进步要点(第50周12.4-12.11)
    学习笔记:重塑你的自我驱动力
    学习笔记之是什么决定我们的命运
    读书《万万没想到 3》
    人与人之间的鄙视链是如何形成的?
    第7本《万万没想到-用理工科思维理解世界2》
    中明写公众号的时候他在想什么
  • 原文地址:https://www.cnblogs.com/SiriusRen/p/5831190.html
Copyright © 2011-2022 走看看