-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0743-network-delay-time.java
48 lines (39 loc) · 1.35 KB
/
0743-network-delay-time.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
// Bellman Ford ALgorithm
// Time Complexty (n * t) | Space Complexity O(n) where t is the length of times
class Solution {
public int networkDelayTime(int[][] times, int n, int k) {
// initialize an array with max value of size n
int[] paths = new int[n];
Arrays.fill(paths, Integer.MAX_VALUE);
paths[k - 1] = 0;
for (int i = 0; i < n; i++) {
// make a copy of paths
int[] temp = new int[n];
temp = Arrays.copyOf(paths, paths.length);
// loop through times
for (int j = 0; j < times.length; j++) {
int src = times[j][0]; // source
int tgt = times[j][1]; // target
int time = times[j][2]; // time
if (
temp[src - 1] != Integer.MAX_VALUE &&
temp[src - 1] + time < temp[tgt - 1]
) {
temp[tgt - 1] = temp[src - 1] + time;
}
}
// set paths to temp
paths = temp;
}
int result = Integer.MIN_VALUE;
// calculate max value
for (int i = 0; i < n; i++) {
if (paths[i] == Integer.MAX_VALUE) {
return -1;
}
result = Math.max(result, paths[i]);
}
// return result
return result;
}
}