結果

問題 No.583 鉄道同好会
ユーザー sca1lsca1l
提出日時 2017-10-27 23:59:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,558 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 67,856 KB
最終ジャッジ日時 2024-05-01 18:08:20
合計ジャッジ時間 8,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,028 KB
testcase_01 AC 121 ms
54,348 KB
testcase_02 AC 123 ms
54,016 KB
testcase_03 AC 106 ms
52,916 KB
testcase_04 AC 117 ms
54,236 KB
testcase_05 AC 114 ms
54,144 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 114 ms
53,192 KB
testcase_09 AC 113 ms
53,296 KB
testcase_10 AC 170 ms
54,604 KB
testcase_11 AC 454 ms
59,196 KB
testcase_12 AC 487 ms
61,692 KB
testcase_13 AC 520 ms
61,308 KB
testcase_14 AC 475 ms
61,352 KB
testcase_15 AC 603 ms
61,540 KB
testcase_16 AC 701 ms
67,856 KB
testcase_17 AC 750 ms
59,784 KB
testcase_18 AC 740 ms
59,540 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[] c = new int[n];
        ArrayList[] x = new ArrayList[n];
        for(int i=0; i<n; i++){
            x[i] = new ArrayList<Integer>();
        }
        
        int at = 0;
        for(int i=0; i<m; i++){
            int a = sc.nextInt();
            int b = sc.nextInt();
            x[a].add(b);
            x[b].add(a);
            c[a]++;
            c[b]++;
            at = a;
        }
        
        int con = 0;
        ArrayList<Integer> q = new ArrayList<Integer>();
        q.add(at);
        boolean[] ch = new boolean[n];
        while(q.size()>0){
            int now = q.remove(0);
            ch[now] = true;
            for(int i=0; i<x[now].size(); i++){
                int ne = (int)x[now].get(i);
                if(ch[ne]){
                    break;
                }
                q.add(ne);
            }
            con++;
        }
        
        int uni = 0;
        int odd = 0;
        for(int i=0; i<n; i++){
            if(c[i]%2==1){
               odd++;
            }
            if(c[i]>0){
                uni++;
            }
        }
        
        if(con<uni){
            System.out.println("NO");
            System.exit(0);
        }
        
        if(odd==0 || odd==2){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0