POJ 3984 迷宮問題

2021-08-15 10:19:43 字數 1068 閱讀 4498

定義乙個二維陣列: 

int maze[5][5] = ;

它表示乙個迷宮,其中的1表示牆壁,0表示可以走的路,只能橫著走或豎著走,不能斜著走,要求程式設計序找出從左上角到右下角的最短路線。

input

乙個5 × 5的二維陣列,表示乙個迷宮。資料保證有唯一解。

output

左上角到右下角的最短路徑,格式如樣例所示。

sample input

0 1 0 0 0

0 1 0 1 0

0 0 0 0 0

0 1 1 1 0

0 0 0 1 0

sample output

(0, 0)

(1, 0)

(2, 0)

(2, 1)

(2, 2)

(2, 3)

(2, 4)

(3, 4)

(4, 4)

用bfs解決 一開始想不通要怎麼輸出路徑,後來在同學的啟發下明白了pre的作用(記錄當前節點是從哪乙個節點來的,也就是記錄父節點在佇列中的編號)有點類似樹的感覺?最後再遞迴輸出路徑

(所以說還是要多交流,看**看博文看不懂,但有時候一句話就收穫很多啊

**如下

#include #include#includeusing namespace std;

const int maxn=5;

int place[maxn][maxn];

int dx = ;

int dy = ;//dx dy是搜尋節點的邊or稱2為方向

struct node

way[1000];

//保留問題 怎麼輸出路徑

bool judge(int x,int y)

void print (int i)

void bfs(int sx,int sy)//給的引數是起點和終點

for(int j = 0; j < 4 ; j++)//4個方向

}i++;

}}int main()

{ for(int i=0;i

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表示可以走的路,只能橫著走或豎著走,...