蓝桥杯每日一题2023.10.17

迷宫 - 蓝桥云课 (lanqiao.cn)

题目描述

样例:

复制代码
01010101001011001001010110010110100100001000101010
00001000100000101010010000100000001001100110100101
01111011010010001000001101001011100011000000010000
01000000001010100011010000101000001010101011001011
00011111000000101000010010100010100000101100000000
11001000110101000010101100011010011010101011110111
00011011010101001001001010000001000101001110000000
10100000101000100110101010111110011000010000111010
00111000001010100001100010000001000101001100001001
11000110100001110010001001010101010101010001101000
00010000100100000101001010101110100010101010000101
11100100101001001000010000010101010100100100010100
00000010000000101011001111010001100000101010100011
10101010011100001000011000010110011110110100001000
10101010100001101010100101000010100000111011101001
10000000101100010000101100101101001011100000000100
10101001000000010100100001000100000100011110101001
00101001010101101001010100011010101101110000110101
11001010000100001100000010100101000001000111000010
00001000110000110101101000000100101001001000011101
10100101000101000000001110110010110101101010100001
00101000010000110101010000100010001001000100010101
10100001000110010001000010101001010101011111010010
00000100101000000110010100101001000001000000000010
11010000001001110111001001000011101001011011101000
00000110100010001000100000001000011101000000110011
10101000101000100010001111100010101001010000001000
10000010100101001010110000000100101010001011101000
00111100001000010000000110111000000001000000001011
10000001100111010111010001000110111010101101111000

题目分析

使用常见的bfs算法算出最短路,重点在于如何输出路径,我们可以每走一步将上一步使用pre数组存下即可,我们从{1,1}出发到{30,50}结束,可以从结束的位置不断找到pre也就是此位置的上一个位置,如果找到了{1,1}也就是说我们找到了所有的位置,但我们此时是倒着找的需要将其翻转即可,注意需要按照字典序也就是DLRU的顺序寻找

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
const int N = 2e3 + 10;
typedef pair<int, int> PII;
PII pre[N][N], endd, startt;
queue<PII> q;
string s;
bool st[N][N];
char g[N][N];
int dx[4] = {1, 0, 0, -1};
int dy[4] = {0, -1, 1, 0};
void bfs()
{
	st[1][1] = true;
	while(q.size())
	{
		auto t = q.front();
		int x = t.first;
		int y = t.second;
		q.pop();
		for(int i = 0; i < 4; i ++)
		{
			int a = x + dx[i];
			int b = y + dy[i];
			if(a < 1 || a > 30 || b < 1 || b > 50 || st[a][b] == 1)continue;
			if(g[a][b] == '0')
			{
				q.push({a, b});
				pre[a][b] = t;
				st[a][b] = true;
			}
		}
	}
}
int main()
{
	for(int i = 1; i <= 30; i ++)
	{
		for(int j = 1; j <= 50; j ++)
		{
			cin >> g[i][j];
		}
	}
	q.push({1, 1});
	bfs();
	endd = {30, 50};
	while(true)
	{
		char t;
		startt = endd;
		endd = pre[endd.first][endd.second]; 
	//	cout << endd.first << ' ' << endd.second << '\n';
		if(endd.first - startt.first == -1 && endd.second - startt.second == 0)s += "D";
		else if(endd.first - startt.first == 1 && endd.second - startt.second == 0)s += "U";
		else if(endd.first - startt.first == 0 && endd.second - startt.second == -1)s += "R";
		else if(endd.first - startt.first == 0 && endd.second - startt.second == 1)s += "L"; 
		if(endd.first == 1 && endd.second == 1)break;
	}
	reverse(s.begin(), s.end());
	cout << s;
	return 0;
} 
相关推荐
Purple Coder5 小时前
基于DGN的电工基础-8
职场和发展
Waay7 小时前
面试口述版:个人对 Prometheus 完整理解
运维·学习·云原生·面试·职场和发展·kubernetes·prometheus
凯瑟琳.奥古斯特11 小时前
K次取反最大化数组和解法(力扣1005)
开发语言·c++·算法·leetcode·职场和发展
码云数智-大飞16 小时前
从 OC 平滑迁移 Swift 完整方案
职场和发展·蓝桥杯
水木流年追梦17 小时前
agent面试必备31- AI Agent 核心进阶:工具路由(Tool Routing)
数据库·人工智能·oracle·面试·职场和发展·embedding
子建莫敌20 小时前
ROS2 面试总结
面试·职场和发展
程序员杰哥20 小时前
接口自动化测试项目框架详解
自动化测试·软件测试·python·测试工具·职场和发展·测试用例·接口测试
多年小白20 小时前
第八篇 模拟面试套卷
人工智能·ai·面试·职场和发展
芝士爱知识a1 天前
AI 模拟面试怎么做:智蛙公考智能体多轮对话 + 实时追问的工程实现
面试·职场和发展
sugar__salt2 天前
手撕字符串算法:反转、回文、验证回文 Ⅱ 完整拆解
javascript·算法·面试·职场和发展