迷宮問題
time limit:1000ms
memory limit:65536k
total submissions:8089
accepted:4765
description
定義乙個二維陣列:
int maze[5][5] = ;
它表示乙個迷宮,其中的1表示牆壁,0表示可以走的路,只能橫著走或豎著走,不能斜著走,要求程式設計序找出從左上角到右下角的最短路線。
input
乙個5 × 5的二維陣列,表示乙個迷宮。資料保證有唯一解。
output
左上角到右下角的最短路徑,格式如樣例所示。
sample input
0 1 0 0 0sample output0 1 0 1 0
0 0 0 0 0
0 1 1 1 0
0 0 0 1 0
(0, 0)本題關鍵在於輸出路徑,,方法是利用乙個father陣列記錄父節點,再逆向存入新的陣列,正向輸出。(1, 0)
(2, 0)
(2, 1)
(2, 2)
(2, 3)
(2, 4)
(3, 4)
(4, 4)
father[nx*5+ny]=p.first*5+p.second;
a[j++]=father[k];
k=father[k];
這裡形成一中環環相扣,最後乙個陣列是father[24]它儲存著上乙個位置的值x*5+y,而這乙個又儲存著它的上乙個。。。直到k=0。
#include#includeusing namespace std;
int maze[5][5];
int d[5][5];
const int inf=1000;
int father[30];
typedef pairp;
int dx[4]=,dy[4]=;
void print()
for(int i=j-1;i>=0;i--)
cout<<"("que.push(p(0,0));
d[0][0]=0;
while(que.size())
for(int i=0;i<4;i++)
}} // return d[4][4]; 返回最短路徑數
}int main()
這裡通過乙個二維陣列記錄(d[nx][ny]=d[p.first][p.second]+1;)到達每個位置所需行走的最短長度,,可以返回最短路徑值,但本題不作要求。
POJ3984 迷宮問題
題目 迷宮問題 time limit 1000ms memory limit 65536k total submissions 3183 accepted 1861 description 定義乙個二維陣列 int maze 5 5 它表示乙個迷宮,其中的1表示牆壁,0表示可以走的路,只能橫著走或豎...
POJ 3984 迷宮問題
一道比較簡單的bfs題 include include include include define max 6 using namespace std int map max max px max max py max max int movex 4 movey 4 bool vis max ma...
POJ 3984 迷宮問題
迷宮問題 time limit 1000ms memory limit 65536k total submissions 7047 accepted 4123 description 定義乙個二維陣列 int maze 5 5 它表示乙個迷宮,其中的1表示牆壁,0表示可以走的路,只能橫著走或豎著走,...