0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 09:18:48 +00:00

P1605 迷宫

R42180362
This commit is contained in:
Baoshuo Ren 2020-11-19 19:39:25 +08:00 committed by Baoshuo Ren
parent c365bbcc70
commit 3d98210ff3
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

34
problem/P1605/P1605.cpp Normal file
View File

@ -0,0 +1,34 @@
#include <bits/stdc++.h>
using namespace std;
int n, m, t, sx, sy, fx, fy, ans;
int vis[10][10];
void dfs(int x, int y) {
if (x < 1 || y < 1 || x > n || y > n || vis[x][y] == -1 || vis[x][y] == 1) {
return;
}
if (x == fx && y == fy) {
ans++;
return;
}
vis[x][y] = 1;
dfs(x - 1, y);
dfs(x, y - 1);
dfs(x, y + 1);
dfs(x + 1, y);
vis[x][y] = 0;
}
int main() {
cin >> n >> m >> t >> sx >> sy >> fx >> fy;
for(int i = 0 ; i < t ; i++) {
int x, y;
cin >> x >> y;
vis[x][y] = -1;
}
dfs(sx, sy);
cout << ans << endl;
return 0;
}