time limit: 1000 ms memory limit: 65536 kib
submit
statistic
discuss
problem description
乙個由n * m 個格仔組成的迷宮,起點是(1, 1), 終點是(n, m),每次可以向上下左右四個方向任意走一步,並且有些格仔是不能走動,求從起點到終點經過每個格仔至多一次的走法數。
input
第一行乙個整數t 表示有t 組測試資料。(t <= 110)
對於每組測試資料:
第一行兩個整數n, m,表示迷宮有n * m 個格仔。(1 <= n, m <= 6, (n, m) !=(1, 1) ) 接下來n 行,每行m 個數。其中第i 行第j 個數是0 表示第i 行第j 個格仔可以走,否則是1 表示這個格仔不能走,輸入保證起點和終點都是都是可以走的。
任意兩組測試資料間用乙個空行分開。
output
對於每組測試資料,輸出乙個整數r,表示有r 種走法。
sample input
3sample output2 20 1
0 02 2
0 11 0
2 30 0 0
0 0 0
104
#include #include #include using namespace std;
int mp[10][10];
int vis[10][10];
int n,m;
int cnt;
void dfs(int x, int y)
vis[x][y] = 1;
if( x - 1 >= 1 && !vis[x-1][y] && !mp[x-1][y] )
dfs(x-1, y);
if( x + 1 <= n && !vis[x+1][y] && !mp[x+1][y] )
dfs(x+1, y);
if( y - 1 >= 1 && !vis[x][y-1] && !mp[x][y-1] )
dfs(x, y-1);
if( y + 1 <= m && !vis[x][y+1] && !mp[x][y+1] )
dfs(x, y+1);
vis[x][y] = 0;
}int main()
dfs(1,1);
printf("%d\n",cnt);
}return 0;
}
資料結構實驗之棧與佇列十 走迷宮
time limit 1000ms memory limit 65536kb submit statistic problem description 乙個由n m 個格仔組成的迷宮,起點是 1,1 終點是 n,m 每次可以向上下左右四個方向任意走一步,並且有些格仔是不能走動,求從起點到終點經過每個...
資料結構實驗之棧與佇列十 走迷宮
time limit 1000ms memory limit 65536kb submit statistic problem description 乙個由n m 個格仔組成的迷宮,起點是 1,1 終點是 n,m 每次可以向上下左右四個方向任意走一步,並且有些格仔是不能走動,求從起點到終點經過每個...
資料結構實驗之棧與佇列十 走迷宮
problem description 乙個由n m 個格仔組成的迷宮,起點是 1,1 終點是 n,m 每次可以向上下左右四個方向任意走一步,並且有些格仔是不能走動,求從起點到終點經過每個格仔至多一次的走法數。input 第一行乙個整數t 表示有t 組測試資料。t 110 對於每組測試資料 第一行兩...