-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_1219.java
60 lines (56 loc) · 2.19 KB
/
_1219.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.fishercoder.solutions.secondthousand;
import java.util.LinkedList;
import java.util.Queue;
public class _1219 {
public static class Solution1 {
public int getMaximumGold(int[][] grid) {
Queue<int[]> queue = new LinkedList<>();
int m = grid.length;
int n = grid[0].length;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (grid[i][j] > 0) {
queue.offer(new int[] {i, j});
}
}
}
int maxGold = 0;
while (!queue.isEmpty()) {
int[] start = queue.poll();
boolean[][] visited = new boolean[m][n];
visited[start[0]][start[1]] = true;
maxGold =
Math.max(
maxGold,
backtracking(grid, start, grid[start[0]][start[1]], visited));
}
return maxGold;
}
int[] directions = new int[] {0, 1, 0, -1, 0};
private int backtracking(int[][] grid, int[] start, int gold, boolean[][] visited) {
int max = gold;
for (int i = 0; i < directions.length - 1; i++) {
int nextX = start[0] + directions[i];
int nextY = start[1] + directions[i + 1];
if (nextX >= 0
&& nextX < grid.length
&& nextY >= 0
&& nextY < grid[0].length
&& !visited[nextX][nextY]
&& grid[nextX][nextY] > 0) {
visited[nextX][nextY] = true;
max =
Math.max(
max,
backtracking(
grid,
new int[] {nextX, nextY},
gold + grid[nextX][nextY],
visited));
visited[nextX][nextY] = false;
}
}
return max;
}
}
}