結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー tentententen
提出日時 2021-07-26 14:19:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,846 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 78,504 KB
実行使用メモリ 42,028 KB
最終ジャッジ日時 2024-07-22 04:22:07
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,960 KB
testcase_01 AC 57 ms
37,452 KB
testcase_02 AC 52 ms
36,856 KB
testcase_03 AC 52 ms
37,096 KB
testcase_04 AC 53 ms
36,836 KB
testcase_05 AC 148 ms
41,808 KB
testcase_06 AC 148 ms
41,864 KB
testcase_07 AC 152 ms
41,756 KB
testcase_08 AC 152 ms
41,496 KB
testcase_09 AC 149 ms
41,792 KB
testcase_10 AC 152 ms
42,028 KB
testcase_11 AC 150 ms
41,664 KB
testcase_12 AC 148 ms
41,644 KB
testcase_13 AC 150 ms
41,572 KB
testcase_14 AC 66 ms
37,548 KB
testcase_15 AC 67 ms
37,552 KB
testcase_16 AC 79 ms
37,824 KB
testcase_17 AC 77 ms
37,728 KB
testcase_18 AC 78 ms
37,964 KB
testcase_19 AC 69 ms
37,724 KB
testcase_20 AC 79 ms
37,836 KB
testcase_21 AC 78 ms
37,960 KB
testcase_22 AC 81 ms
37,692 KB
testcase_23 AC 53 ms
36,860 KB
testcase_24 AC 53 ms
36,892 KB
testcase_25 AC 53 ms
36,948 KB
testcase_26 AC 53 ms
37,068 KB
testcase_27 AC 55 ms
36,608 KB
testcase_28 AC 53 ms
36,892 KB
testcase_29 AC 53 ms
37,000 KB
testcase_30 AC 54 ms
37,008 KB
testcase_31 AC 54 ms
37,064 KB
testcase_32 AC 52 ms
36,480 KB
testcase_33 AC 53 ms
36,940 KB
testcase_34 AC 54 ms
36,988 KB
testcase_35 AC 54 ms
37,040 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();
        ArrayList<HashSet<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new HashSet<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        ArrayDeque<Integer> deq = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            if (graph.get(i).size() == 1) {
                deq.add(i);
            }
        }
        int count = 0;
        while (deq.size() > 0) {
            int x = deq.poll();
            if (graph.get(x).size() == 0) {
                continue;
            }
            count++;
            int y = graph.get(x).iterator().next();
            graph.get(y).remove(x);
            if (graph.get(y).size() == 1) {
                deq.add(y);
            }
        }
        if (count % 2 == 1) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0