(int src,int n, ArrayList<ArrayList<int[]>> adj)
| 1 | class Solution { |
| 2 | public int[] dijkstra(int src,int n, ArrayList<ArrayList<int[]>> adj){ |
| 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); |
| 11 | time[src] = 0; |
| 12 | pq.offer(new int[]{src,0}); |
| 13 | while(!pq.isEmpty()){ |
| 14 | int pair[] = pq.poll(); |
| 15 | int u = pair[0]; |
| 16 | int d = pair[1]; |
| 17 | if(d > time[u]) continue; |
| 18 | for(int neighbour[] : adj.get(u)){ |
| 19 | int v = neighbour[0]; |
| 20 | int w = neighbour[1]; |
| 21 | if(time[u] + w < time[v]){ |
| 22 | time[v] = time[u] + w; |
| 23 | pq.offer(new int[]{v, time[v]}); |
| 24 | } |
| 25 | } |
| 26 | } |
| 27 | return time; |
| 28 | } |
| 29 | //time complexity! |
| 30 | public int networkDelayTime(int[][] times, int n, int k) { |
| 31 | ArrayList<ArrayList<int[]>> adj = new ArrayList<>(); |
no test coverage detected