結果
問題 | No.583 鉄道同好会 |
ユーザー | tenten |
提出日時 | 2020-09-07 16:48:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 709 ms / 2,000 ms |
コード長 | 1,830 bytes |
コンパイル時間 | 2,023 ms |
コンパイル使用メモリ | 77,204 KB |
実行使用メモリ | 52,420 KB |
最終ジャッジ日時 | 2024-05-06 23:49:51 |
合計ジャッジ時間 | 8,724 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
41,000 KB |
testcase_01 | AC | 101 ms
40,224 KB |
testcase_02 | AC | 114 ms
41,020 KB |
testcase_03 | AC | 111 ms
41,100 KB |
testcase_04 | AC | 107 ms
40,160 KB |
testcase_05 | AC | 111 ms
40,972 KB |
testcase_06 | AC | 106 ms
40,116 KB |
testcase_07 | AC | 121 ms
41,088 KB |
testcase_08 | AC | 129 ms
41,120 KB |
testcase_09 | AC | 124 ms
40,464 KB |
testcase_10 | AC | 163 ms
41,964 KB |
testcase_11 | AC | 445 ms
47,676 KB |
testcase_12 | AC | 407 ms
46,452 KB |
testcase_13 | AC | 442 ms
47,580 KB |
testcase_14 | AC | 487 ms
47,728 KB |
testcase_15 | AC | 516 ms
47,804 KB |
testcase_16 | AC | 626 ms
51,856 KB |
testcase_17 | AC | 709 ms
52,276 KB |
testcase_18 | AC | 688 ms
52,420 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)) { counts[find(y)] += counts[find(x)]; counts[find(x)] = 0; parents[find(x)] = find(y); } } public boolean isOne() { int count = 0; for (int i = 0; i < counts.length; i++) { if (counts[i] > 1) { count++; } } return count <= 1; } } }