题面
题解
因为是每个状态的顺序搜索,所以dfs之后要记得还原
代码
#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>
using namespace std;
const int N=10;
int t,n,m,sx,sy;
bool st[N][N];
int res;
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){
if(cnt==n*m){
res++;
return;
}
st[x][y]=true;
for(int i=0;i<8;i++){
int nx=x+dx[i],ny=y+dy[i];
if(nx<0||nx>n-1||ny<0||ny>m-1) continue;
if(st[nx][ny]) continue;
dfs(nx,ny,cnt+1);
}
st[x][y]=false;
}
int main() {
cin>>t;
while(t--){
cin>>n>>m>>sx>>sy;
memset(st,false,sizeof st);
res=0;
dfs(sx,sy,1);
cout<<res<<endl;
}
return 0;
}