zoj1940(三维广搜)

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=940

分析:三维其实就是六个方向地搜索,思维清晰且细心点,很快就AC了。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#define LL long long
#define mod 1000000007
#define inf 0x3f3f3f3f
#define N 100010
using namespace std;
struct node
{
    int x,y,z,step;
};
struct move
{
    int l,r,c;
}mo[6]={
    {0,0,1},{0,0,-1},{0,1,0},
    {0,-1,0},{1,0,0},{-1,0,0}
};
char s[35][35][35];
int vis[35][35][35];
int L,R,C;
node make_node(int a,int b,int c,int x)
{
    node temp;
    temp.x=a,temp.y=b;
    temp.z=c;temp.step=x;
    return temp;
}
queue<node>que;
bool judge(int a,int b,int c)
{
    return a>=0&&a<L&&b>=0&&b<R&&c>=0&&c<C&&s[a][b][c]!=‘#‘;
}
int bfs(int x,int y,int z)
{
    memset(vis,0,sizeof(vis));
    while(!que.empty())que.pop();
    que.push(make_node(x,y,z,0));
    vis[x][y][z]=1;
    while(!que.empty())
    {
        node now=que.front();que.pop();
        for(int i=0;i<6;i++)
        {
            int a=now.x+mo[i].l,b=now.y+mo[i].r,c=now.z+mo[i].c,x=now.step;
            if(!vis[a][b][c]&&judge(a,b,c))
            {
                que.push(make_node(a,b,c,x+1));
                vis[a][b][c]=1;
                if(s[a][b][c]==‘E‘)
                {
                    return x+1;
                }
            }
        }
    }
    return -1;
}
int main()
{
    int ans,x,y,z;
    while(scanf("%d%d%d",&L,&R,&C)&&L)
    {
        for(int i=0;i<L;i++)
        for(int j=0;j<R;j++)
        {
            scanf("%s",s[i][j]);
            for(int k=0;k<C;k++)
            {
                if(s[i][j][k]==‘S‘)
                {
                    x=i;y=j;z=k;
                }
            }
        }
        int res=bfs(x,y,z);
        if(res!=-1)printf("Escaped in %d minute(s).\n",res);
        else puts("Trapped!");
    }
}

时间: 2024-10-09 22:39:35

zoj1940(三维广搜)的相关文章

HDU 1253 (简单三维广搜) 胜利大逃亡

奇葩!这么简单的广搜居然爆内存了,而且一直爆,一直爆,Orz 而且我也优化过了的啊,尼玛还是一直爆! 先把代码贴上睡觉去了,明天再来弄 1 //#define LOCAL 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 #include <queue> 6 #include <cmath> 7 using namespace std; 8 9 struct Poin

POJ 2251 三维广搜。

B - Dungeon Master Crawling in process... Crawling failed Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Description You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is com

HDU 1240 (简单三维广搜) Asteroids!

给出一个三维的迷宫以及起点和终点,求能否到大终点,若果能输出最短步数 三维的问题无非就是变成了6个搜索方向 最后强调一下xyz的顺序,从输入数据来看,读入的顺序是map[z][x][y] 总之,这是很基础的一道题 1 //#define LOCAL 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 #include <queue> 6 #include <algorithm

poj 2251 Dungeon Master(简单三维广搜)

题意: 之前做过的所有题都是   在一个平面   上搜索 . 本题很新,在一个三维空间里 ,首先   l  x  y   分别代表 l 层   每一层有 x 行   y 列 问从 S 开始   走到 E   最小步是多少    显然用广搜,只是多了一个向上向下的搜索. 注意: 所谓广搜  ,是一层一层的搜,  每一层其步数是一样的   ,可以通过建立一个数组存步数 ,也可以 将步数同时存入队列中 另外搜过的要做标记, 在做标记时  尽量要在里面做标记(就是每搜过一个点就  立马 将之标记)不然一

hdu1240/poj2225 BFS广搜的再理解

原题地址 HDUOJ POJ 题目介绍 题意 这同样是一道搜索题,所不同的是要搜索的图是三维的而不是二维的.但这并没什么大的改变,只是增加了两个搜索的方向而已. 陷阱 要注意的地方是,所给出的起点终点的坐标是按照 列,行,层的顺序. 关于BFS 与DFS不同,BFS能保证所搜到的路径一定是最短路径,所以我们不需要维护一个多维(此处为3维)数组来记录访问到每一点的最小步数,只需要维护一个多维数组来标记是否走过就可以了.DFS中是要不停回溯来找最短路径的,但是BFS是不需要的.这是BFS本身的性质所

7.23 深搜广搜

深搜(DFS)  关键词:回溯 栈实现,(递归本质和栈一样)一直走到底再回溯,时间复杂度高,空间低 #include<iostream> #include<cstring> using namespace std; int R,C; char maps[40][40]; int dp[40][40]; int dir[2][4]={{1,0,0,-1},{0,1,-1,0}}; int ans=1<<30; void DFS(int x,int y,int step){

NYOJ 284 坦克大战 &amp;&amp; POJ 2312 Battle City (广搜+优先队列)

链接:click here~~ 题意: 描述 Many of us had played the game "Battle city" in our childhood, and some people (like me) even often play it on computer now. What we are discussing is a simple edition of this game. Given a map that consists of empty space

Catch That Cow(广搜)

个人心得:其实有关搜素或者地图啥的都可以用广搜,但要注意标志物不然会变得很复杂,想这题,忘记了标志,结果内存超时: 将每个动作扔入队列,但要注意如何更简便,更节省时间,空间 Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and t

codevs 1225:八数码难题【双向广搜】

这里是传送门 这道题用普通BFS是可以做的,但是很明显没得过,效率太低了.效率更高的算法A*和双向广搜都可取,这写一下双向广搜的. 注意题目中的判重很重要,可以转化成九位数用hash来解决这个问题. #include <set> #include <string> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define