B - Dungeon Master POJ - 2251

本文介绍了一种解决三维迷宫逃脱问题的算法实现。利用广度优先搜索(BFS)算法,在限定的时间内找到从起点到终点的最短路径。通过两个不同的AC代码示例展示了如何使用队列进行节点遍历,以及如何判断是否能够成功逃脱。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B - Dungeon Master

POJ - 2251

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!

AC代码1:

#include <stdio.h>
#include <cstdlib>
#include <string.h>
#include <iostream>
#include <queue>
using namespace std;
#define  INF 0x0f0f0f0f
struct node
{
	int x;
	int y;
	int z;
	node (int _x, int _y, int _z){ x = _x; y = _y; z = _z;}
};

int l, r, c;

char maps[100][100][100] = {0};
int answer[50][50][50];
int sx, sy, sz;
int gx, gy, gz;
int dx[6] = {1, -1, 0, 0, 0, 0}, dy[6] = {0, 0, 1, -1, 0, 0}, dz[6] = {0, 0, 0, 0, 1, -1};


int bfs()
{
	queue<node> que;
	que.push(node(sx,sy,sz));
	while (que.size())
	{
		node q = que.front(); que.pop();
		if (q.x == gx && q.y == gy && q.z == gz)
		{
			break;
		}
		for (int i = 0; i < 6; i++)
		{
			int nx = q.x + dx[i]; int ny = q.y + dy[i]; int nz = q.z + dz[i];
			if (0 <= nx && nx < l && 0 <= ny && ny < r && 0 <= nz && nz < c && maps[nx][ny][nz] != '#' && answer[nx][ny][nz] == INF)
			{
				que.push(node(nx, ny, nz));
				answer[nx][ny][nz] = answer[q.x][q.y][q.z] + 1;
			}
		}
	}
	return answer[gx][gy][gz];
}

int main()
{
	while (scanf("%d%d%d", &l, &r, &c) && (l != 0 && r != 0 && c != 0))
	{
		getchar();
		for (int i = 0; i < 50; i++)
		{
			for (int j = 0; j < 50; j++)
			{
				for (int k = 0; k < 50; k++)
				{
					answer[i][j][k] = INF;
				}
			}
		}
		for (int i = 0; i < l; i++)
		{
			for (int j = 0; j < r; j++)
			{
				for (int k = 0; k < c; k++)
				{
					maps[i][j][k] = getchar();
					if (maps[i][j][k] == 'S')
					{
						sx = i;
						sy = j;
						sz = k;
						answer[i][j][k] = 0;
					}
					if (maps[i][j][k] == 'E')
					{
						gx = i;
						gy = j;
						gz = k;
					}
				}
				getchar();
			}
			getchar();
		}
		int res = bfs();
		if (answer[gx][gy][gz] == INF)
		{
			printf("Trapped!\n");
		}
		else
		{
			printf("Escaped in %d minute(s).\n", res);
		}

	}



	return 0;
}

AC代码2:

#include<set>
#include<map>
#include<cmath>
#include<queue>
#include<string>
#include<cstdio>
#include<cstring>
#include<sstream>
#include<cstdlib>
#include<cstring>
#include<sstream>
#include<iostream>
#include<algorithm>

using namespace std;
const int maxn = 40;
const int INF = 0x3f3f3f3f;
const int mod = 7;
typedef long long ll;
#define PI 3.1415927

char mp[maxn][maxn][maxn];
int mv[6][3] = {-1,0,0,0,-1,0,0,0,-1,1,0,0,0,1,0,0,0,1};
int sx,sy,sz,gx,gy,gz;
int l, r, c;
int ans = 0;
bool flag;
bool vis[maxn][maxn][maxn];
struct Node
{
    int x, y, z;
    int step;
    Node(int _x, int _y, int _z, int _s){x=_x;y=_y;z=_z;step=_s;}
};
void bfs()
{
    queue<Node> que;
    que.push(Node(sx,sy,sz,0));
    vis[sx][sy][sz] = true;
    while(!que.empty())
    {
        Node nn = que.front();
        que.pop();
        for(int i = 0; i < 6; ++i)
        {
            int nx = nn.x+mv[i][0]; int ny = nn.y+mv[i][1]; int nz = nn.z+mv[i][2];
            if(0<=nx&&nx<l&&0<=ny&&ny<r&&0<=nz&&nz<c&&!vis[nx][ny][nz]&&mp[nx][ny][nz]!='#')
            {
                if(mp[nx][ny][nz] == 'E')
                {
                    flag = true;
                    ans = nn.step+1;
                    break;
                }
                else
                {
                    vis[nx][ny][nz] = true;
                    que.push(Node(nx,ny,nz,nn.step+1));
                }
            }
        }
    }
}
int main()
{
    while(~scanf("%d%d%d", &l, &r, &c) && (l||r||c))
    {
        flag = false;
        getchar();
        ans = 0;
        memset(vis, 0, sizeof(vis));
        for(int i = 0; i < l; ++i)
        {
            for(int j = 0; j < r; ++j)
            {
                for(int k = 0; k < c; ++k)
                {
                    mp[i][j][k] = getchar();
                    if(mp[i][j][k] == 'S')
                    {
                        sx=i;sy=j;sz=k;
                    }
                    if(mp[i][j][k] == 'E')
                    {
                        gx=i;gy=j;gz=k;
                    }
                }
                getchar();
            }
            getchar();
        }
        bfs();
        if(flag)
            printf("Escaped in %d minute(s).\n", ans);
        else
            printf("Trapped!\n");
    }
    return 0;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值