結果
問題 | No.2202 贅沢てりたまチキン |
ユーザー | tenten |
提出日時 | 2023-04-21 11:31:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 481 ms / 2,000 ms |
コード長 | 2,629 bytes |
コンパイル時間 | 2,853 ms |
コンパイル使用メモリ | 84,640 KB |
実行使用メモリ | 73,980 KB |
最終ジャッジ日時 | 2024-11-06 07:48:25 |
合計ジャッジ時間 | 10,702 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
49,936 KB |
testcase_01 | AC | 57 ms
50,192 KB |
testcase_02 | AC | 56 ms
50,064 KB |
testcase_03 | AC | 56 ms
50,196 KB |
testcase_04 | AC | 57 ms
50,356 KB |
testcase_05 | AC | 57 ms
50,488 KB |
testcase_06 | AC | 56 ms
50,316 KB |
testcase_07 | AC | 56 ms
50,208 KB |
testcase_08 | AC | 56 ms
50,080 KB |
testcase_09 | AC | 57 ms
50,056 KB |
testcase_10 | AC | 62 ms
50,648 KB |
testcase_11 | AC | 56 ms
50,260 KB |
testcase_12 | AC | 57 ms
50,392 KB |
testcase_13 | AC | 56 ms
50,384 KB |
testcase_14 | AC | 388 ms
73,980 KB |
testcase_15 | AC | 381 ms
72,408 KB |
testcase_16 | AC | 344 ms
58,624 KB |
testcase_17 | AC | 356 ms
64,744 KB |
testcase_18 | AC | 252 ms
56,248 KB |
testcase_19 | AC | 276 ms
58,564 KB |
testcase_20 | AC | 373 ms
58,464 KB |
testcase_21 | AC | 374 ms
58,372 KB |
testcase_22 | AC | 327 ms
58,580 KB |
testcase_23 | AC | 348 ms
60,444 KB |
testcase_24 | AC | 318 ms
58,508 KB |
testcase_25 | AC | 481 ms
58,532 KB |
testcase_26 | AC | 380 ms
66,240 KB |
testcase_27 | AC | 370 ms
66,540 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); UnionFindTree uft = new UnionFindTree(n * 2); for (int i = 0; i < m; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; uft.unite(a, b + n); uft.unite(a + n, b); } for (int i = 0; i < n; i++) { if (!uft.same(i, n + i)) { System.out.println("No"); return; } } System.out.println("Yes"); } static class UnionFindTree { int[] parents; public UnionFindTree(int size) { parents = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; } } public int find(int x) { if (parents[x] == x) { return x; } else { return parents[x] = find(parents[x]); } } public boolean same(int x, int y) { return find(x) == find(y); } public void unite(int x, int y) { if (!same(x, y)) { parents[find(x)] = find(y); } } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }