首页 > 代码库 > POJ 2251 <Dungeon Master> <搜索>
POJ 2251 <Dungeon Master> <搜索>
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 formEscaped 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 lineTrapped!Sample Input
3 4 5S.....###..##..###.#############.####...###########.#######E1 3 3S###E####0 0 0Sample Output
Escaped in 11 minute(s).Trapped!
题意:3维迷宫逃生问题。
题解:搜索吧。
AC代码:
#include<stdio.h> #include<string.h> #include<queue>using namespace std;char a[35][35][35];int judge[35][35][35];int zz[6][3] = { { 1,0,0 },{ 0,1,0 },{ -1,0,0 },{ 0,-1,0 },{ 0,0,1 },{ 0,0,-1 } };struct {int l, r, c;int step;}str[30000];int bfs(void);int l, r, c;int pd(int x, int y, int z){ if (a[x][y][z] != ‘#‘&&x >= 0 && x<l&&y >= 0 && y<r&&z >= 0 && z<c&&!judge[x][y][z])return 1; else return 0;}int x00,y00,z00;int main(){ int i, j, k; while (scanf("%d %d %d", &l, &r, &c) && l ) { for (i = 0;i < l;++i) { for (j = 0;j<r;++j) { for (k = 0;k<c;++k) { scanf(" %c", &a[i][j][k]); judge[i][j][k] = 0; if (a[i][j][k] == ‘S‘) { x00 = i; y00 = j; z00 = k; } } } } k = bfs(); if (k) { printf("Escaped in %d minute(s).\n", k); continue; } printf("Trapped!\n"); } return 0;}int bfs(){ int qian = 0, hou = 0, x, y, z, tx, ty, tz, k, cn; str[hou].l = x00; str[hou].r = y00; str[hou].c = z00; str[hou].step = 0; hou++; judge[x00][y00][z00] = 1; while (qian<hou) { x = str[qian].l; y = str[qian].r; z = str[qian].c; cn = str[qian].step; for (k = 0;k<6;++k) { tx = x + zz[k][0]; ty = y + zz[k][1]; tz = z + zz[k][2]; if (pd(tx, ty, tz)) { if (a[tx][ty][tz] == ‘E‘)return cn + 1; judge[tx][ty][tz] = 1; str[hou].l = tx; str[hou].r = ty; str[hou].c = tz; str[hou].step = cn + 1; hou++; } } qian++; } return 0;}
POJ 2251 <Dungeon Master> <搜索>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。