Dungeon Master bfs

探讨了在一个由立方体构成的三维迷宫中寻找最短路径逃出的问题。使用广度优先搜索算法来确定从起点到出口的最短时间,并提供了一个具体的实现示例。
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!

3维迷宫问题。每次可以向上,向下,向左,向右,向前,向后走。从起始点走到终点,求最小步数。我们可以用bfs,每次将六种情况压入队列(只要此位置能走而且没有走过)。没有什么很特殊的情况,直接暴力搜索就行。数组我们可以多开一点,把边界以外的都设为岩石(不能走),这样因为走不出去我们就可以不用判断边界的情况了。

#include<iostream>
#include<queue>
#include<cstring>
using namespace std;
int a[34][34][34];                //用来表示迷宫。其中-1表示岩石,0表示可以走(输入字符的时候装换一下就行了)
bool b[34][34][34];               //用来判断是否走过此位置
int n,m,S;
struct f {
	int x,y,z,s;              //s表示步数
};
f start,end;                      //起点和终点
void bfs() {
	queue<f> q;
	q.push(start);
	f p,c;
	memset(b,0,sizeof(b));
	while(!q.empty()) {
		p=q.front() ;
		q.pop();
		if(p.x==end.x&&p.y==end.y&&p.z==end.z) {        //到达终点,更新终点的步数  
			end.s=p.s;
			return ;
		}
		if(a[p.x+1][p.y][p.z]==0&&b[p.x+1][p.y][p.z]==0) {
			c.x=p.x+1;
			c.y=p.y;
			c.z=p.z;
			c.s=p.s+1;
			q.push(c);
			b[p.x+1][p.y][p.z]=1;
		}
		if(a[p.x-1][p.y][p.z]==0&&b[p.x-1][p.y][p.z]==0) {
			c.x=p.x-1;
			c.y=p.y;
			c.z=p.z;
			c.s=p.s+1;
			q.push(c);
			b[p.x-1][p.y][p.z]=1;
		}
		if(a[p.x][p.y+1][p.z]==0&&b[p.x][p.y+1][p.z]==0) {
			c.x=p.x;
			c.y=p.y+1;
			c.z=p.z;
			c.s=p.s+1;
			q.push(c);
			b[p.x][p.y+1][p.z]=1;
		}
		if(a[p.x][p.y-1][p.z]==0&&b[p.x][p.y-1][p.z]==0) {
			c.x=p.x;
			c.y=p.y-1;
			c.z=p.z;
			c.s=p.s+1;
			q.push(c);
			b[p.x][p.y-1][p.z]=1;
		}
		if(a[p.x][p.y][p.z+1]==0&&b[p.x][p.y][p.z+1]==0) {
			c.x=p.x;
			c.y=p.y;
			c.z=p.z+1;
			c.s=p.s+1;
			q.push(c);
			b[p.x][p.y][p.z+1]=1;
		}
		if(a[p.x][p.y][p.z-1]==0&&b[p.x][p.y][p.z-1]==0) {
			c.x=p.x;
			c.y=p.y;
			c.z=p.z-1;
			c.s=p.s+1;
			q.push(c);
			b[p.x][p.y][p.z-1]=1;
		}

	}

}
int main() {
	int L,R,C;
	while(cin>>L>>R>>C) {
		if(L==0&&R==0&&C==0)
			break;
		char t;
		memset(a,-1,sizeof(a));                //先全部设为岩石,输入.时我们在变为可以走
      		for(int i=1; i<=L; i++) {             //从1开始,边界0为岩石,这样我们就不用判断边界了
			for(int j=1; j<=R; j++) {
				for(int k=1; k<=C; k++) {
					cin>>t;
					if(t=='S') {
						start.x=i;
						start.y=j;
						start.z=k;
						start.s=0;
					} else if(t=='.')
						a[i][j][k]=0;
					else if(t=='E') {
						end.x=i;
						end.y=j;
						end.z=k;
						a[i][j][k]=0;
					}
				}
			}
		}
		end.s=0;
		bfs();
		if(end.s!=0)
		cout<<"Escaped in "<<end.s<<" minute(s)."<<endl;
		else
		cout<<"Trapped!"<<endl;
	}
	return 0;
}

内容概要:本文详细介绍了一个基于Java与Vue的食品安全溯源与智能分析系统的设计与实现,涵盖项目背景、目标意义、面临挑战及解决方案,并阐述了系统的整体架构与核心技术模块。系统通过集成物联网设备实现全流程数据采集,采用分布式数据库保障大数据存储与高效访问,结合机器学习算法进行风险预测与智能预警,同时利用可视化技术呈现溯源链路与分析结果,实现了食品从生产到销售全过程的透明化、智能化管理。文中还提供了关键模块的代码示例,如数据清洗、特征提取、决策树模型训练与预测、溯源接口开发等,增强了项目的可实施性与参考价值。; 适合人群:具备Java开发基础、熟悉Spring Boot和Vue框架,有一定前后端开发经验的软件工程师或计算机专业学生,尤其适合从事食品安全、物联网、大数据分析等相关领域技术研发的人员; 使用场景及目标:①构建食品全链条溯源体系,提升企业对食品安全事件的快速响应能力;②实现生产流程数字化管理,支持政府监管与消费者透明查询;③应用机器学习进行风险建模与智能预警,推动食品行业智能化转型; 阅读建议:建议结合文中提供的模型描述与代码示例,深入理解各模块设计逻辑,重点关注数据处理流程、算法实现与前后端交互机制,可基于该项目进行二次开发或拓展应用于其他行业的溯源系统建设。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值