結果

問題 No.2202 贅沢てりたまチキン
ユーザー flippergoflippergo
提出日時 2024-11-13 12:49:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 816 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 225,616 KB
最終ジャッジ日時 2024-11-13 12:49:33
合計ジャッジ時間 8,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,548 KB
testcase_01 AC 40 ms
53,876 KB
testcase_02 AC 40 ms
53,944 KB
testcase_03 AC 41 ms
54,528 KB
testcase_04 AC 40 ms
54,144 KB
testcase_05 AC 40 ms
54,712 KB
testcase_06 AC 40 ms
54,172 KB
testcase_07 AC 48 ms
53,928 KB
testcase_08 AC 40 ms
53,688 KB
testcase_09 AC 42 ms
54,784 KB
testcase_10 AC 222 ms
139,908 KB
testcase_11 AC 40 ms
54,244 KB
testcase_12 AC 40 ms
55,104 KB
testcase_13 AC 40 ms
54,796 KB
testcase_14 AC 319 ms
147,804 KB
testcase_15 AC 355 ms
146,128 KB
testcase_16 AC 352 ms
168,368 KB
testcase_17 AC 466 ms
225,616 KB
testcase_18 AC 202 ms
114,736 KB
testcase_19 AC 342 ms
156,452 KB
testcase_20 AC 463 ms
185,712 KB
testcase_21 AC 462 ms
185,968 KB
testcase_22 AC 207 ms
88,760 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,131 ms
196,876 KB
testcase_26 AC 492 ms
210,964 KB
testcase_27 AC 367 ms
157,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
col = [set() for _ in range(N+1)]
for i in range(1,N+1):
    if len(col[i])!=0:continue
    col[i].add(0)
    que = deque([i])
    while que:
        x = que.popleft()
        if len(col[x])==1:
            s = list(col[x])[0]
            for y in G[x]:
                if 1-s not in col[y]:
                    col[y].add(1-s)
                    que.append(y)
        elif len(col[x])==2:
            for y in G[x]:
                if len(col[y])==1:
                    col[y] = set([0,1])
                    que.append(y)
flag = "Yes"
for i in range(1,N+1):
    if len(col[i])<2:
        flag = "No"
        break
print(flag)
0