分析
- 可以跳的八个方向使用偏移量技巧,如下:
#include <iostream>
#include <cstring>
using namespace std;
const int N = 10;
int n, m;
bool st[N][N]; // 记录是否被遍历过
int ans; // 使用全局变量记录答案
int dx[8] = {-2, -1, 1, 2, 2, 1, -1, -2};
int dy[8] = {1, 2, 2, 1, -1, -2, -2, -1};
void dfs(int x, int y, int cnt) { // cnt为当前遍历第几个点
if (cnt == n * m) {
ans++;
return;
}
st[x][y] = true;
for (int i = 0; i < 8; i++) {
int a = x + dx[i], b = y + dy[i];
if (a < 0 || a >= n || b < 0 || b >= m) continue;
if (st[a][b]) continue;
dfs(a, b, cnt + 1);
}
st[x][y] = false;
}
int main() {
int T;
cin >> T;
while (T--) {
int x, y;
cin >> n >> m >> x >> y;
memset(st, 0, sizeof st);
ans = 0;
dfs(x, y, 1);
cout << ans << endl;
}
return 0;
}