-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm743.java
46 lines (37 loc) · 1.19 KB
/
m743.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
import java.awt.Point;
class Solution {
public int networkDelayTime(int[][] times, int n, int k) {
boolean[] reached = new boolean[n + 1];
reached[0] = true;
HashMap<Integer, ArrayList<Point>> adj = new HashMap<>(n);
for (int[] time : times) {
if (!adj.containsKey(time[0])) {
adj.put(time[0], new ArrayList<Point>());
}
adj.get(time[0]).add(new Point(time[1], time[2]));
}
PriorityQueue<Point> pq = new PriorityQueue<>(20, (a, b) -> a.x - b.x);
pq.add(new Point(0, k));
int maxDelay = 0;
while (!pq.isEmpty()) {
Point curr = pq.poll();
if (reached[curr.y]) {
continue;
}
maxDelay = curr.x;
reached[curr.y] = true;
if (!adj.containsKey(curr.y))
continue;
for (Point nxt : adj.get(curr.y)) {
if (!reached[nxt.x]) {
pq.add(new Point(curr.x + nxt.y, nxt.x));
}
}
}
for (boolean b : reached) {
if (!b)
return -1;
}
return maxDelay;
}
}