2019藍橋杯B組第5題:迷宮
題目描述:迷宮
資料如下:
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,這裡定義了一個結構體作為每一步的點,儲存每一步的資訊。每一次都是按照DLRU的方式行走。
具體看程式碼~~~
程式碼
#include<iostream> #include<cstdio> #include<queue> using namespace std; typedef long long ll; const int maxn = 60; char mp[maxn][maxn]; struct point{ int r,c,d; string path; point(int _r,int _c,int _d,string _path){ this->r = _r; this->c = _c; this->d = _d; this->path = _path; } }; queue<point> q; int dr[4] = {1,0,0,-1}; int dc[4] = {0,-1,1,0}; string dp[4]={"D","L","R","U"}; bool vis[maxn][maxn]; int main(){ // r=30 c=50 freopen("../maze.txt","r",stdin); for(int i = 1;i<=30;i++){ scanf("%s",mp[i]+1); } point start(1,1,0,""); q.push(start); vis[0][0]=1; int ans = 0; string ansp; while(!q.empty()){ point cnt = q.front(); q.pop(); int r = cnt.r,c = cnt.c; int d = cnt.d; string path = cnt.path; // vis[r][c]=1; if(r==30&&c==50){ ans = d; ansp = path; break; } for(int i = 0;i<4;i++){ int next_c = c+dc[i],next_r = r+dr[i]; if(next_r<1||next_r>30||next_c<1||next_c>50||mp[next_r][next_c]=='1'||vis[next_r][next_c]){ continue; } vis[next_r][next_c]=1; point next(next_r,next_c,d+1,path+dp[i]); q.push(next); } } cout<<ansp<<endl; printf("%d",ans); return 0; }