K 迷宮問題 POJ 3984

2021-08-15 11:41:50 字數 1550 閱讀 2849

acm icpc 2018 world finals

language:

default

迷宮問題

time limit:1000ms

memory limit:65536k

total submissions:27931

accepted:16104

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)

source

#include

#include

#include

#include

using namespace std;

int a[10][10];//地圖

int vis[10][10];//記錄是否走過

int go[4][2]= ;//四個方向

struct node//記錄位置

tmp,tmp2;

queueq;//建立佇列

node pre[50][50];//記錄前面乙個元素

node ans[50];

int bfs()//尋找路徑

memset(vis,0,sizeof(vis));//初始化陣列

tmp.x=0;//起始點

tmp.y=0;

q.push(tmp);//起始點加入佇列

vis[0][0]=1;//標記已經走過

while(!q.empty())//尋找路徑

}if(vis[4][4])//到終點時結束

break;

}int lastx=4,lasty=4,x,y;//終點

int num=0;

while(lastx||lasty)//直到迴圈到起點時

printf("(0, 0)\n");

for(int i=num-1; i>=0; i--)//輸出路徑

}int main()

for(int i=1; i<5; i++)

}bfs();//尋找路徑

}return 0;

}

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