(int p1[], int p2[])
| 3 | // pair -> (node, time) |
| 4 | PriorityQueue<int[]> pq = new PriorityQueue<>(new Comparator<int[]>(){ |
| 5 | public int compare(int p1[], int p2[]){ |
| 6 | return p1[1] - p2[1]; |
| 7 | } |
| 8 | }); |
| 9 | int time[] = new int[n]; |
| 10 | Arrays.fill(time,Integer.MAX_VALUE); |
nothing calls this directly
no outgoing calls
no test coverage detected