結果
問題 | No.583 鉄道同好会 |
ユーザー | tenten |
提出日時 | 2020-09-07 16:43:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,830 bytes |
コンパイル時間 | 2,522 ms |
コンパイル使用メモリ | 77,344 KB |
実行使用メモリ | 53,872 KB |
最終ジャッジ日時 | 2024-05-06 23:49:14 |
合計ジャッジ時間 | 10,097 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,336 KB |
testcase_01 | AC | 129 ms
41,156 KB |
testcase_02 | AC | 128 ms
41,128 KB |
testcase_03 | AC | 131 ms
41,632 KB |
testcase_04 | WA | - |
testcase_05 | AC | 128 ms
41,528 KB |
testcase_06 | AC | 134 ms
41,096 KB |
testcase_07 | AC | 118 ms
40,168 KB |
testcase_08 | AC | 119 ms
39,840 KB |
testcase_09 | AC | 135 ms
41,344 KB |
testcase_10 | AC | 159 ms
41,960 KB |
testcase_11 | AC | 492 ms
47,912 KB |
testcase_12 | AC | 550 ms
47,920 KB |
testcase_13 | AC | 517 ms
48,116 KB |
testcase_14 | AC | 527 ms
47,944 KB |
testcase_15 | AC | 591 ms
47,916 KB |
testcase_16 | AC | 717 ms
52,076 KB |
testcase_17 | AC | 800 ms
52,416 KB |
testcase_18 | AC | 744 ms
53,864 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[] counts = new int[n]; UnionFindTree uft = new UnionFindTree(n); for (int i = 0; i < m; i++) { int a = sc.nextInt(); int b = sc.nextInt(); uft.unite(a, b); counts[a]++; counts[b]++; } int count = 0; for (int x : counts) { count += x % 2; } boolean flag = (count <= 2 && uft.isOne()); if (flag) { System.out.println("YES"); } else { System.out.println("NO"); } } static class UnionFindTree { int[] parents; int[] counts; public UnionFindTree(int size) { parents = new int[size]; counts = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; counts[i] = 1; } } public int find(int x) { if (x == parents[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); counts[find(y)] += counts[find(x)]; counts[find(x)] = 0; } } public boolean isOne() { int count = 0; for (int i = 0; i < counts.length; i++) { if (counts[i] > 1) { count++; } } return count <= 1; } } }