結果

問題 No.583 鉄道同好会
ユーザー tentententen
提出日時 2020-09-07 16:43:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,830 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-11-29 10:48:11
合計ジャッジ時間 9,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,280 KB
testcase_01 AC 111 ms
41,192 KB
testcase_02 AC 115 ms
40,780 KB
testcase_03 AC 126 ms
41,416 KB
testcase_04 WA -
testcase_05 AC 117 ms
40,960 KB
testcase_06 AC 113 ms
41,148 KB
testcase_07 AC 114 ms
41,196 KB
testcase_08 AC 115 ms
41,176 KB
testcase_09 AC 126 ms
41,364 KB
testcase_10 AC 160 ms
41,964 KB
testcase_11 AC 391 ms
47,992 KB
testcase_12 AC 542 ms
47,960 KB
testcase_13 AC 511 ms
47,856 KB
testcase_14 AC 524 ms
48,080 KB
testcase_15 AC 523 ms
48,032 KB
testcase_16 AC 683 ms
52,216 KB
testcase_17 AC 731 ms
53,852 KB
testcase_18 AC 755 ms
52,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
        }
    }
}
0