結果

問題 No.583 鉄道同好会
ユーザー htensaihtensai
提出日時 2019-12-12 19:09:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 910 ms / 2,000 ms
コード長 1,823 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 65,564 KB
最終ジャッジ日時 2024-06-25 12:47:50
合計ジャッジ時間 10,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,936 KB
testcase_01 AC 137 ms
54,044 KB
testcase_02 AC 141 ms
53,904 KB
testcase_03 AC 139 ms
53,760 KB
testcase_04 AC 139 ms
54,324 KB
testcase_05 AC 138 ms
53,700 KB
testcase_06 AC 139 ms
53,924 KB
testcase_07 AC 140 ms
54,172 KB
testcase_08 AC 142 ms
53,944 KB
testcase_09 AC 146 ms
53,724 KB
testcase_10 AC 190 ms
54,324 KB
testcase_11 AC 528 ms
59,200 KB
testcase_12 AC 591 ms
59,136 KB
testcase_13 AC 597 ms
59,552 KB
testcase_14 AC 583 ms
59,300 KB
testcase_15 AC 659 ms
59,428 KB
testcase_16 AC 853 ms
63,712 KB
testcase_17 AC 879 ms
65,388 KB
testcase_18 AC 910 ms
65,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] counts = new int[n];
        UnionFindTree uft = new UnionFindTree(n);
        HashSet<Integer> set = new HashSet<>();
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt();
            int y = sc.nextInt();
            counts[x]++;
            counts[y]++;
            uft.unite(x, y);
            set.add(x);
            set.add(y);
        }
        boolean flag = true;
        int parent = -1;
        for (int x : set) {
            int y = uft.find(x);
            if (parent != -1 && parent != y) {
                flag = false;
                break;
            }
            parent = y;
        }
        int od = 0;
        for (int i = 0; i < n; i++) {
            if (counts[i] % 2 == 1) {
                od++;
            }
        }
        if (od > 2 || !flag) {
            System.out.println("NO");
        } else {
            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 void unite(int x, int y) {
            int xx = find(x);
            int yy = find(y);
            if (xx == yy) {
                return;
            }
            parents[xx] = yy;
        }
    }
}
0