forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_675.java
89 lines (81 loc) · 2.98 KB
/
_675.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.fishercoder.solutions;
import java.util.LinkedList;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
public class _675 {
public static class Solution1 {
public int cutOffTree(List<List<Integer>> forest) {
if (forest == null || forest.isEmpty() || forest.size() == 0 || forest.get(0).get(0) == 0) {
return -1;
}
int m = forest.size();
int n = forest.get(0).size();
/**cut trees in ascending order*/
PriorityQueue<Tree> heap = new PriorityQueue<>((a, b) -> a.height - b.height);
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (forest.get(i).get(j) > 1) {
/**This is important: we'll add trees that are only taller than 1!!!*/
heap.offer(new Tree(i, j, forest.get(i).get(j)));
}
}
}
int sum = 0;
Tree start = new Tree();
while (!heap.isEmpty()) {
Tree curr = heap.poll();
int step = bfs(forest, curr, start, m, n);
if (step == -1) {
return -1;
}
sum += step;
start = curr;
}
return sum;
}
private int bfs(List<List<Integer>> forest, Tree target, Tree start, int m, int n) {
int[] dirs = new int[]{0, 1, 0, -1, 0};
boolean[][] visited = new boolean[m][n];
Queue<Tree> queue = new LinkedList<>();
queue.offer(start);
visited[start.x][start.y] = true;
int step = 0;
while (!queue.isEmpty()) {
int size = queue.size();
for (int k = 0; k < size; k++) {
Tree tree = queue.poll();
if (tree.x == target.x && tree.y == target.y) {
return step;
}
for (int i = 0; i < 4; i++) {
int nextX = tree.x + dirs[i];
int nextY = tree.y + dirs[i + 1];
if (nextX < 0 || nextY < 0 || nextX >= m || nextY >= n || visited[nextX][nextY] || forest.get(nextX).get(nextY) == 0) {
continue;
}
queue.offer(new Tree(nextX, nextY, forest.get(nextX).get(nextY)));
visited[nextX][nextY] = true;
}
}
step++;
}
return -1;
}
class Tree {
int x;
int y;
int height;
public Tree(int x, int y, int height) {
this.x = x;
this.y = y;
this.height = height;
}
public Tree() {
this.x = 0;
this.y = 0;
this.height = 0;
}
}
}
}