結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー merlinmerlin
提出日時 2021-07-21 22:12:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,439 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 81,012 KB
実行使用メモリ 56,816 KB
最終ジャッジ日時 2024-07-17 18:55:01
合計ジャッジ時間 5,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,496 KB
testcase_01 AC 57 ms
50,648 KB
testcase_02 AC 48 ms
50,152 KB
testcase_03 AC 47 ms
50,000 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 141 ms
55,112 KB
testcase_07 AC 139 ms
55,032 KB
testcase_08 AC 146 ms
54,968 KB
testcase_09 WA -
testcase_10 AC 142 ms
54,980 KB
testcase_11 AC 148 ms
54,820 KB
testcase_12 AC 148 ms
55,088 KB
testcase_13 AC 136 ms
54,812 KB
testcase_14 AC 59 ms
50,660 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 60 ms
50,732 KB
testcase_18 AC 72 ms
50,860 KB
testcase_19 AC 71 ms
50,880 KB
testcase_20 WA -
testcase_21 AC 72 ms
50,528 KB
testcase_22 WA -
testcase_23 AC 49 ms
50,392 KB
testcase_24 AC 48 ms
50,124 KB
testcase_25 AC 49 ms
50,396 KB
testcase_26 AC 50 ms
50,400 KB
testcase_27 AC 48 ms
50,332 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();

        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),m=Integer.parseInt(s[1]);
        ArrayList<Integer> g[]=new ArrayList[n];
        int i,c[]=new int[n];
        for(i=0;i<n;i++) g[i]=new ArrayList<>();
        for(i=0;i<m;i++)
        {
            s=bu.readLine().split(" ");
            int u=Integer.parseInt(s[0])-1,v=Integer.parseInt(s[1])-1;
            g[u].add(v); g[v].add(u);
            c[u]++; c[v]++;
        }

        int ans=0;
        PriorityQueue<int[]> pq=new PriorityQueue<>(new Comparator<int[]>() {
            @Override
            public int compare(int[] o1, int[] o2) {
                if(o1[1]>o2[1]) return 1;
                else return -1;
            }});
        for(i=0;i<n;i++) pq.add(new int[]{i,c[i]});
        while(!pq.isEmpty())
        {
            int a[]=pq.poll();
            if(c[a[0]]==0 || c[a[0]]<a[1]) continue;
            ans++;
            c[a[0]]=0;
            for(int x:g[a[0]])
            {
                c[x]--;
                if(c[x]>0) pq.add(new int[]{x,c[x]});
            }
        }

        if(ans%2==0) sb.append("No");
        else sb.append("Yes");
        System.out.println(sb);
    }
}
0