(int u, int v, int w)
| 73 | } |
| 74 | |
| 75 | public static void addEdge2(int u, int v, int w) { |
| 76 | next2[++cnt2] = head2[u]; |
| 77 | to2[cnt2] = v; |
| 78 | weight2[cnt2] = w; |
| 79 | head2[u] = cnt2; |
| 80 | } |
| 81 | |
| 82 | public static int find(int i) { |
| 83 | if (i != father[i]) { |
no outgoing calls
no test coverage detected