UVA 532 Dungeon Master

UVA-532

题意:给出一个有L层,每层为R×C的三位空间,S为初始位置,E为出口,求S到E的最短时间 。
解题思路:= =。三维上的bfs,其实和矩阵上的bfs没什么差别,把每层的矩阵读进来,bfs一下就好了。

/*************************************************************************
    > File Name: UVA-532.cpp
    > Author: Narsh
    > 
    > Created Time: 2016年07月20日 星期三 18时41分57秒
 ************************************************************************/

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
using namespace std;
struct node{
    int x,y,z,time;
}q[600000];
bool pd[31][32][32];
const int c[6][3]={{1,0,0},{-1,0,0},{0,1,0},{0,-1,0},{0,0,1},{0,0,-1}};
int h,m,n,k,t,H;
int endx,endy,endz;
string s[60][32];
int main() {
    while (scanf("%d%d%d",&h,&n,&m) && n+m+h) {
        H=t=0;
        memset(pd,false,sizeof(pd));
        for (int k = 1; k <= h; k++)
            for (int i = 1; i <= n; i++) {
                cin>>s[k][i];
                s[k][i]=" "+s[k][i];
                for (int j = 1; j <= m; j++) {
                    if (s[k][i][j] == 'S') {
                        t++;
                        q[t].x=i;
                        q[t].y=j;
                        q[t].z=k;
                        q[t].time=0;
                        pd[i][j][k]=false;
                    }
                    if (s[k][i][j] == 'E') {
                        endx=i;
                        endy=j;
                        endz=k;
                        s[k][i][j] = '.';
                    }
                    if (s[k][i][j] == '.') 
                        pd[i][j][k]=true;
                }
            }
        int x,y,z;
        while (H <= t) {
            H++;
            if (endx == q[H].x && endy == q[H].y && endz == q[H].z){
                printf("Escaped in %d minute(s).\n",q[H].time);
                break;
            }
            for (int i = 0; i < 6; i++){
                x=q[H].x+c[i][0];
                y=q[H].y+c[i][1];
                z=q[H].z+c[i][2];
                if (pd[x][y][z] && s[z][x][y] == '.') {
                    pd[x][y][z]=false;
                    t++;
                    q[t].x=x;
                    q[t].y=y;
                    q[t].z=z;
                    q[t].time = q[H].time+1;
                }
            }
        }
        if (H > t) printf("Trapped!\n");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值