j. 迷宮問題(migong) [ problem 1737 ] [ discussion ]
description
設有乙個n∗n(2≤n<10)方格的迷宮,入口和出口分別在左上角和右上角。迷宮格仔中分別放0和1,0表示可通,1表示不能,入口和出口處肯定是0。迷宮走的規則如下所示:即從某點開始,有八個方向可走,前進方格中數字為0時表示可通過,為1時表示不可通過,要另找路徑。找出所有從入口(左上角)到出口(右上角)的路徑(不能重複),輸出路徑總數,如果無法到達,則輸出0。
samples
input copy
30 0 0
0 1 1
1 0 0
output
2source
資訊學一本通 初賽篇 演算法部分
discussions
no more discussions
dfs 一條路走到黑 深度優先
more>>
#include.h>
#include
#include
using namespace std;
typedef long
long ll;
typedef pair<
int,
int>
pii;
ll read()
const
int maxn =
1e6+
199;
ll sum=
0,maxa=-1
;ll n,m,k,w,ans=
0,cnt=0;
ll a[
300]
[300];
ll b[
300]
[300];
ll dis[8]
[2]=
,,,,
,,,}
;ll mod=
1e9+7;
struct nodest,en;
queue
p;void
dfs(
int xx,
int yy)
int x,y;
for(
int i=
0;i<=
7;i++)}
return;}
intmain()
b[1]
[1]=
1;dfs(1,
1); cout
}
迷宮問題dfs
迷宮問題 棧作為深度優先遍歷 dfs 採用的搜尋方法的特點是盡可能先對縱深方向進行搜尋 可以最快的找到解 include define m 8 define n 8 define maxsize 1000 typedef struct box typedef struct sttype 迷宮問題常用...
迷宮問題 DFS
給定乙個n m方格的迷宮,迷宮裡有t處障礙,障礙處不可通過。給定起點座標和終點座標,問 每個方格最多經過1次,有多少種從起點座標到終點座標的方案。在迷宮中移動有上下左右四種方式,每次只能移動乙個方格。資料保證起點上沒有障礙。思路 經典搜尋題,這篇我用深度優先搜尋來解題,首先我們定義兩個陣列,乙個用來...
dfs迷宮問題模板
輸入起點終點座標,輸入迷宮,輸出最短路 對於每種情況到達的下一步,又有n種情況可以走,include include include define n 100 using namespace std int map n n vis n n int endx,endy,m,n int min 9999...