結果

問題 No.2664 Prime Sum
ユーザー miya145592miya145592
提出日時 2024-03-08 22:16:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 65,732 KB
最終ジャッジ日時 2024-09-29 19:47:20
合計ジャッジ時間 2,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(v, c, p):
    ret = True
    color[v] = c
    for nv in G[v]:
        if nv==p:
            continue
        if color[nv]==c:
            return False
        if color[nv]==1-c:
            continue
        ret = dfs(nv, 1-c, v)
        if ret==False:
            return ret
    return ret

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
AB = [list(map(int, input().split())) for _ in range(M)]
G = [[] for _ in range(N)]
for a, b in AB:
    a-=1
    b-=1
    G[a].append(b)
    G[b].append(a)
color = [-1 for _ in range(N)]
for i in range(N):
    if color[i]!=-1:
        continue
    ret = dfs(i, 0, -1)
    if ret==False:
        print("No")
        exit()
print("Yes")
0