結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー tentententen
提出日時 2022-09-29 11:34:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 2,104 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 79,304 KB
実行使用メモリ 54,928 KB
最終ジャッジ日時 2024-06-02 02:01:24
合計ジャッジ時間 6,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,948 KB
testcase_01 AC 50 ms
50,304 KB
testcase_02 AC 47 ms
50,404 KB
testcase_03 AC 49 ms
50,464 KB
testcase_04 AC 48 ms
50,364 KB
testcase_05 AC 130 ms
54,728 KB
testcase_06 AC 133 ms
54,752 KB
testcase_07 AC 135 ms
54,908 KB
testcase_08 AC 131 ms
54,840 KB
testcase_09 AC 131 ms
54,816 KB
testcase_10 AC 141 ms
54,516 KB
testcase_11 AC 135 ms
54,928 KB
testcase_12 AC 133 ms
54,668 KB
testcase_13 AC 130 ms
54,872 KB
testcase_14 AC 61 ms
50,728 KB
testcase_15 AC 59 ms
50,896 KB
testcase_16 AC 59 ms
50,604 KB
testcase_17 AC 60 ms
50,696 KB
testcase_18 AC 74 ms
51,204 KB
testcase_19 AC 71 ms
51,024 KB
testcase_20 AC 73 ms
50,984 KB
testcase_21 AC 60 ms
51,112 KB
testcase_22 AC 61 ms
51,184 KB
testcase_23 AC 48 ms
50,388 KB
testcase_24 AC 48 ms
50,352 KB
testcase_25 AC 48 ms
50,560 KB
testcase_26 AC 47 ms
50,396 KB
testcase_27 AC 49 ms
50,472 KB
testcase_28 AC 50 ms
50,128 KB
testcase_29 AC 48 ms
50,008 KB
testcase_30 AC 47 ms
50,344 KB
testcase_31 AC 47 ms
50,396 KB
testcase_32 AC 52 ms
50,440 KB
testcase_33 AC 51 ms
50,336 KB
testcase_34 AC 49 ms
50,032 KB
testcase_35 AC 47 ms
50,260 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<>());
        }
        int[] counts = new int[n];
        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);
            counts[a]++;
            counts[b]++;
        }
        ArrayDeque<Integer> deq = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            if (counts[i] == 1) {
                deq.add(i);
            }
        }
        int ans = 0;
        while (deq.size() > 0) {
            int x = deq.poll();
            if (counts[x] == 0) {
                continue;
            }
            ans++;
            for (int y : graph.get(x)) {
                counts[y]--;
                if (counts[y] == 1) {
                    deq.add(y);
                }
                graph.get(y).remove(x);
            }
        }
        if (ans % 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("");
    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