考核内容:
在指定的题库中自主选择不少于 15 道算法题并完成解题,其中题目难度分配如下:
- 简单题不少于 10 道
- 中等题不少于 4 道
- 困难题不少于 1 道
解答代码
72. 小M的弹子游戏机挑战(简单)
代码实现:
public class Main {
public static int solution(int n, int m, int[][] array) {
// 定义一个二维数组来标记是否访问过某个位置
boolean[][] visited = new boolean[n][m];
int maxScore = 0;
// 遍历起始位置
for (int i = 0; i < m; i++) {
maxScore = Math.max(maxScore, dfs(i, 0, 0, array, visited));
}
return maxScore;
}
public static int dfs(int x, int y, int score, int[][] array, boolean[][] visited) {
// 检查是否越界
if (x < 0 || x >= array[0].length || y >= array.length) {
return score;
}
// 标记当前位置已访问
visited[y][x] = true;
// 根据当前位置的情况进行处理
if (array[y][x] == -1) { // 是钉子
// 尝试向左下和右下移动
int scoreLeft = dfs(x - 1, y + 1, score, array, visited);
int scoreRight = dfs(x + 1, y + 1, score, array, visited);
visited[y][x] = false; // 回溯,取消访问标记
return Math.max(scoreLeft, scoreRight);
} else if (array[y][x] > 0) { // 是得分点
score += array[y][x];
}
// 继续向下移动
int scoreDown = dfs(x, y + 1, score, array, visited);
visited[y][x] = false; // 回溯,取消访问标记
return scoreDown;
}
public static void main(String[] args) {
// Add your test cases here
System.out.println(solution(3, 3, new int[][] { { -1, 0, -1 }, { 100, 0, 0 }, { 0, 50, 70 } }) == 50);
System.out.println(
solution(4, 3, new int[][] { { -1, 0, -1 }, { 0, -1, 0 }, { 50, 100, 70 }, { 80, 200, 50 } }) == 130);
}
}
运行结果: