当前位置:网站首页>Maze walking BFS medium + -- the last programming challenge
Maze walking BFS medium + -- the last programming challenge
2022-06-29 10:13:00 【Momo 623】
The title is OK
More careful No problem
Count as bfs The board title of , When doing this, you should pay attention to the following dictionary order
When I first entered Just follow the dictionary order , Then the final answer must be the dictionary order
As for the shortest number of steps use bfs Words , The first time to reach the destination , Is the shortest .
If you use dfs Judgment is needed
Save path : Use string The direction of each storage
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
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
int dx[] = {
1, 0, 0, -1};
int dy[] = {
0, -1, 1, 0};
string t = "DLRU";
string s[35];
int dp[35][60];
struct node
{
string v;
int x, y;
};
void bfs()
{
queue<node> q;
q.push((node){
"", 0, 0});
dp[0][0] = 1;
while (!q.empty())
{
node x = q.front();
q.pop();
if (x.x == 29 && x.y == 49)
{
cout << x.v;
return;
}
for (int i = 0; i < 4; i++)
{
int nx = dx[i] + x.x;
int ny = dy[i] + x.y;
if (nx >= 0 && ny >= 0 && nx < 30 && ny < 50 && s[nx][ny] == '0')
{
s[nx][ny] = '1';
q.push((node){
x.v + t[i], nx, ny});
}
}
}
}
int main()
{
#define m
#ifdef m
freopen("out.txt", "r", stdin);
#endif
for (int i = 0; i < 30; i++)
{
cin >> s[i];
}
bfs();
return 0;
}
边栏推荐
猜你喜欢

A 2.5D Cancer Segmentation for MRI Images Based on U-Net

Binding mechanism of JVM methods

JVM之方法的绑定机制

C语言实现一种创建易管理易维护线程的方法

Container of the basic component of the flutter

使用Rancher搭建Kubernetes集群

Codeforces Round #659 (Div. 2)

The collapsing "2.3 * 10 = 22" produced by multiplying float and int

FreeRTOS (IX) - queue

Memory layout of JVM objects
随机推荐
HDU 6778 car (group enumeration -- > shape pressure DP)
Listview of the basic component of the shutter
Time varying and non time varying
走迷宫 bfs 中等+——最后的编程挑战
Community Union
SymPy Tutorial(译)
Leetcode MySQL database topic 178
The stones game
L2-026 小字辈 (25 分)
1098 Insertion or Heap Sort (25 分)
Codeforces Round #652 (Div. 2)
setInterval、setTimeout和requestAnimationFrame
内网穿透工具frp使用入门
2019.11.20训练总结
Using rancher to build kubernetes cluster
Nacos registry cluster
Reverse thinking - short story
In XML layout, the button is always displayed on the top layer
[51nod 1215] array width
1021 Deepest Root (25 分)