迷宮問題
time limit:1000ms
memory limit:65536k
total submissions:7047
accepted:4123
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)(1, 0)
(2, 0)
(2, 1)
(2, 2)
(2, 3)
(2, 4)
(3, 4)
(4, 4)
#includeint map[5][5] ;
int sovex[25];
int sovey[25];
int count = 0;
const int ndir[4][2] = ,,,} ; //二維可以向四個方向移動
int dfs(int x,int y)
for(i = 0 ; i < 4 ; i++)
else if(map[x+ndir[i][0]][y+ndir[i][1]] == 0) //可以可走
map[x+ndir[i][0]][y+ndir[i][1]] = 0 ; //走完之後,標記原來的狀態。
} }return 0 ;
}int main()
}printf("(0, 0)\n");
dfs(0, 0);
for(i = count; i >= 1; i--)
printf("(%d, %d)\n", sovex[i], sovey[i]);
printf("(4, 4)");
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...
poj3984 迷宮問題)
這題寬度優先搜尋的題目,不過最後是輸出最短路徑,而不是步數。我當時做題時用的方法是,先從最右下到左上用bfs遍歷一遍,記錄好到達每個節點的步數,然後反過來,從左上開始搜尋,每次搜尋之前記錄的步數比當前節點步數少一的點,符合條件的便是要輸出的點。為什麼可以這樣,因為bfs保證了每個節點只會訪問一次,也...