結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー shotoyooshotoyoo
提出日時 2021-07-21 21:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 72,704 KB
最終ジャッジ日時 2024-07-17 15:58:08
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


# グラフの読み込み
n,m = map(int, input().split())
ns = [[] for _ in range(n)]
ds = [0]*n
for _ in range(m):
    u,v = map(int, input().split())
    u -= 1
    v -= 1
    ns[u].append(v)
    ns[v].append(u)
    ds[u] += 1
    ds[v] += 1

done = [0]*n
ng = [0]*n    
q = []
for u in range(n):
    if ds[u]==1:
        q.append(u)
        done[u] = 1
val = 0
while q:
    u = q.pop()
    if not ng[u]:
        val += 1
    for v in ns[u]:
        ds[v] -= 1
        if ds[v]==1 and (not done[v]):
            q.append(v)
            done[v] = 1
        if ds[v]==0:
            ng[v] = 1
if val%2==0:
    print("No")
else:
    print("Yes")
0