acwing 1116 马走日

简介: acwing 1116 马走日

活动 - AcWing

#include<iostream>
#include<algorithm>
#include<cstring>
 
using namespace std ;
 
const int N = 30 ;
int g[N][N] ;
int t , m , n ,sx , sy ;
int ans ;
bool v[N][N] ;
int d[8][2] = {{-2,1},{-1,2},{1,2},{2,1},{2,-1},{1,-2},{-1,-2},{-2,-1} };
void dfs(int x ,int y , int u ){
  if(u == n * m){
    ans ++ ; return  ;
  }
  for(int i = 0 ; i < 8 ; i ++){
    int tx = x + d[i][0] , ty = y + d[i][1] ;
    if(v[tx][ty] == 0 && tx >= 0 && tx < n && ty >= 0 && ty < m ){
      v[tx][ty] = 1 ;
      dfs(tx,ty,u+1) ;
      v[tx][ty] = 0 ;
    }
  }
}
 
int main(){
  cin >> t ;
  while(t --){
    cin >> n >> m >> sx >> sy ;
    memset(v,0,sizeof(v)) ;
    ans = 0 ;
    v[sx][sy] = 1 ;
    dfs(sx,sy, 1) ;
    cout << ans << endl; 
  }
}
目录
相关文章
|
2月前
acwing 1010 拦截导弹
acwing 1010 拦截导弹
30 1
AcWing 1265. 数星星(每日一题)
AcWing 1265. 数星星(每日一题)
|
2月前
acwing 898 数字三角形
acwing 898 数字三角形
31 2
|
2月前
acwing 188 武士风度的牛
acwing 188 武士风度的牛
9 0
|
2月前
acwing 1107 魔板
acwing 1107 魔板
10 0
|
2月前
acwing 285. 没有上司的舞会
acwing 285. 没有上司的舞会
18 0
|
2月前
acwing 1012 友好城市
acwing 1012 友好城市
16 0
|
2月前
acwing 1017 怪盗基德的滑翔翼
acwing 1017 怪盗基德的滑翔翼
29 0
|
2月前
acwing 1014 登山
acwing 1014 登山
27 0
AcWing 562. 壁画(每日一题)
AcWing 562. 壁画(每日一题)