蓝桥杯每日一题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;
} 
相关推荐
一只齐刘海的猫6 小时前
【Leetcode】找到字符串中所有字母异位词
算法·leetcode·职场和发展
文艺倾年8 小时前
【强化学习】强化学习基本概念,20W字总结(一)
人工智能·python·语言模型·自然语言处理·面试·职场和发展·大模型
凌波粒8 小时前
LeetCode--108.将有序数组转换为二叉搜索树(二叉树)
算法·leetcode·职场和发展
ychqsq9 小时前
54.新芽
经验分享·职场和发展
一只齐刘海的猫12 小时前
【Leetcode】无重复字符的最长子串
算法·leetcode·职场和发展
小卡不对头13 小时前
如何评价书木兰软考题库?一个适合小白的软考题库平台
职场和发展
YHHLAI14 小时前
LeetCode 1.两数之和 | 从暴力枚举到线性优化
算法·leetcode·职场和发展
酉鬼女又兒14 小时前
零基础入门计算机网络网际层核心:IP数据报发送与转发完整流程、静态路由配置方法、路由环路成因与解决方案及历年考研经典例题深度解析
网络·tcp/ip·计算机网络·考研·职场和发展
林森lsjs15 小时前
【日耕一题】5. 青春常数(17届蓝桥杯C++B组第一题)
算法·蓝桥杯
Y_Bk15 小时前
第十七届蓝桥杯C/C++A组省赛
c语言·数据结构·c++·算法·蓝桥杯