POJ 3984 迷宮問題 入門簡單題

2021-10-03 23:36:16 字數 1469 閱讀 1882

迷宮問題

time limit:1000ms

memory limit:65536k

total submissions:49149

accepted:26684

description

定義乙個二維陣列:

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)

1 #include 2 #include 3 #include 4 

5 using namespace std;

6 7 typedef pairp;

8 9 const int inf = 1e8;

10 11 const int n=5,m=5;

12 int maze[n][m],d[n][m];

13 int sx=0,sy=0;

14 int gx=4,gy=4;

15 16 int dx[2]=,dy[2]=;

17 18 struct

19 pre[n][m];

23 24 void bfs()

25 64 }

65 }

66 67 }

68 69 void dfs(int nx,int ny)

70 77

78 dfs(pre[nx][ny].x,pre[nx][ny].y);

79 printf("(%d, %d)\n",nx,ny);

80 81 }

82 83 void solve()

84 90 else

91

94 }

95 96 int main()

97 104 }

105 solve();

106 return 0;

107 }

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