试题 E: 迷宫

#include<bits/stdc++.h>
using namespace std;
struct node {
	int x;
	int y;
	string p; //path,记录从起点(0,0)到这个点(x,y)的完整路径
};
char a[31][51]; //存地图
char k[4]= {'D','L','R','U'};
int dir[4][2]= {{1,0},{0,-1},{0,1},{-1,0}};
int vis[30][50]; //标记。vis=1: 已经搜过,不用再搜
void bfs() {
	node start;
	start.x=0;
	start.y=0;
	start.p=""; //定义起点
	vis[0][0]=1; //标记起点被搜过
	queue<node>q;
	q.push(start); //把第一个点放进队列,开始BFS
	while(!q.empty()) {
		node now = q.front(); //取出队首
		q.pop();
		if(now.x==29 && now.y==49) { //第一次达到终点,这就是字典序最小的最短路径
			cout<<now.p<<endl; //打印路径:从(0,0)到(29,49)
			return;
		}
		for(int i=0; i<4; i++) { //扩散邻居结点
			node next;
			next.x = now.x+dir[i][0];
			next.y = now.y+dir[i][1];
			if(next.x<0||next.x>=30||next.y<0||next.y>=50) //越界了
				continue;
			if(vis[next.x][next.y]==1||a[next.x][next.y]=='1') //vis=1:已经搜过; a=1:是障碍
				continue;
			vis[next.x][next.y]=1; //标记被搜过
			next.p = now.p+k[i]; //记录完整路径:把上一个点的路径,加上这一步后,复制给下一个点
			q.push(next);
		}
	}
}
int main() {
	for(int i=0; i<30; i++) cin>>a[i]; //读题目给的地图数据
	bfs();
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值