結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー Akijin_007Akijin_007
提出日時 2022-11-04 13:39:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 77,416 KB
最終ジャッジ日時 2024-07-18 13:19:16
合計ジャッジ時間 2,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,880 KB
testcase_01 AC 38 ms
58,836 KB
testcase_02 AC 32 ms
52,336 KB
testcase_03 AC 31 ms
52,748 KB
testcase_04 AC 32 ms
52,208 KB
testcase_05 AC 74 ms
77,240 KB
testcase_06 AC 74 ms
77,416 KB
testcase_07 AC 76 ms
77,264 KB
testcase_08 AC 75 ms
77,240 KB
testcase_09 AC 76 ms
76,900 KB
testcase_10 AC 76 ms
77,328 KB
testcase_11 AC 75 ms
77,328 KB
testcase_12 AC 74 ms
77,052 KB
testcase_13 AC 75 ms
76,972 KB
testcase_14 AC 38 ms
54,376 KB
testcase_15 AC 38 ms
55,328 KB
testcase_16 AC 38 ms
55,576 KB
testcase_17 AC 38 ms
55,836 KB
testcase_18 AC 40 ms
54,984 KB
testcase_19 AC 39 ms
56,676 KB
testcase_20 AC 41 ms
55,220 KB
testcase_21 AC 40 ms
55,480 KB
testcase_22 AC 37 ms
55,060 KB
testcase_23 AC 32 ms
52,428 KB
testcase_24 AC 32 ms
52,892 KB
testcase_25 AC 32 ms
52,980 KB
testcase_26 AC 33 ms
52,448 KB
testcase_27 AC 32 ms
52,740 KB
testcase_28 AC 36 ms
52,608 KB
testcase_29 AC 36 ms
52,592 KB
testcase_30 AC 35 ms
54,164 KB
testcase_31 AC 32 ms
53,132 KB
testcase_32 AC 32 ms
52,532 KB
testcase_33 AC 32 ms
54,088 KB
testcase_34 AC 32 ms
52,604 KB
testcase_35 AC 33 ms
52,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, M = map(int, input().split())

to = [[] for i in range(N)]
d = [0] * N

for i in range(M):
    l, r = map(int, input().split())
    to[l-1].append(r-1)
    to[r-1].append(l-1)
    d[l-1] += 1
    d[r-1] += 1

ans = 0

q = []

for i in range(N):
    if d[i] == 1:
        q.append(i)

v = [0] * N

while q:
    t = q.pop()
    if v[t] == 1:
        continue
    v[t] = 1

    for x in to[t]:
        if v[x] == 1:
            continue
        d[x] -= 1
        ans += 1
        if d[x] == 1:
            q.append(x)

# print(ans)
if ans % 2 == 0:
    print("No")
else:
    print("Yes")





0