解题思路:看注释就行
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
static boolean[][] vis; // 标记数组
static int[] orient = {-1, 2, 1, -2, -1, -2, 1, 2, -1}; // 8个方向
static int sum, n, m;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while (t-- > 0) {
// 矩阵图大小
n = sc.nextInt();
m = sc.nextInt();
vis = new boolean[n][m];
// 获起点
int x = sc.nextInt();
int y = sc.nextInt();
//方案总数
sum = 0;
// 标记起点位置已经访问
vis[x][y] = true;
dfs(x, y, 1);
System.out.println(sum);
}
}
public static void dfs(int x, int y, int curSum) {
if (curSum == (n * m)) {
sum++;
return;
}
// 递归8个方向
for (int i = 0; i < 8; i++) {
// 获取可以到达的新方向
int u = x + orient[i];
int v = y + orient[i+1];
// 剪枝条件,避免无效递归
if (u < 0 || u >= n || v < 0 || v >= m || vis[u][v]){
continue;
}
// 标记当前位置已访问
vis[u][v] = true;
// 深处递归
dfs(u, v, curSum+1);
// 回溯
vis[u][v] = false;
}
}
}
0.0分
3 人评分
这可能是一个假的冒泡法浏览:1071 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:631 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1186 |
WU-字符串比较 (C++代码)浏览:824 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:1110 |
幸运数 (C++代码)浏览:1309 |
循环入门练习6 (C语言代码)浏览:1058 |
数组输出 (C语言代码)浏览:749 |
简单的a+b (C语言代码)浏览:491 |