結果

問題 No.583 鉄道同好会
ユーザー tentententen
提出日時 2022-10-14 17:24:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 2,357 bytes
コンパイル時間 2,835 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 46,660 KB
最終ジャッジ日時 2024-06-26 12:41:34
合計ジャッジ時間 5,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,940 KB
testcase_01 AC 57 ms
36,876 KB
testcase_02 AC 55 ms
36,880 KB
testcase_03 AC 58 ms
36,844 KB
testcase_04 AC 54 ms
36,792 KB
testcase_05 AC 55 ms
36,972 KB
testcase_06 AC 54 ms
37,124 KB
testcase_07 AC 55 ms
36,988 KB
testcase_08 AC 55 ms
37,172 KB
testcase_09 AC 57 ms
36,852 KB
testcase_10 AC 61 ms
37,308 KB
testcase_11 AC 175 ms
43,488 KB
testcase_12 AC 191 ms
43,576 KB
testcase_13 AC 192 ms
44,772 KB
testcase_14 AC 189 ms
44,612 KB
testcase_15 AC 205 ms
43,260 KB
testcase_16 AC 256 ms
46,660 KB
testcase_17 AC 280 ms
46,640 KB
testcase_18 AC 282 ms
46,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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 x = sc.nextInt();
            int y = sc.nextInt();
            counts[x]++;
            counts[y]++;
            uft.unite(x, y);
        }
        int judge = 0;
        HashSet<Integer> parents = new HashSet<>();
        for (int i = 0; i < n; i++) {
            judge += counts[i] % 2;
            if (counts[i] > 0) {
                parents.add(uft.find(i));
            }
        }
        if (judge <= 2 && parents.size() == 1) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    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 (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);
            }
        }
    }
    
}
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0