(int x, int y)
| 174 | } |
| 175 | |
| 176 | public static long edge(int x, int y) { |
| 177 | int a = Math.min(x, y); |
| 178 | int b = Math.max(x, y); |
| 179 | return (1L * a) << 32 | b; |
| 180 | } |
| 181 | |
| 182 | public static void connect(int c, int x, int y) { |
| 183 | int u = node(c, x); |
no test coverage detected