(int u, int v, int w)
| 38 | public static ArrayDeque<Integer> deq = new ArrayDeque<>(); |
| 39 | |
| 40 | public static void addEdge(int u, int v, int w) { |
| 41 | nxt[++cntg] = head[u]; |
| 42 | to[cntg] = v; |
| 43 | weight[cntg] = w; |
| 44 | head[u] = cntg; |
| 45 | } |
| 46 | |
| 47 | public static int buildOut(int l, int r) { |
| 48 | int rt; |
no outgoing calls
no test coverage detected