結果

問題 No.2664 Prime Sum
ユーザー suisensuisen
提出日時 2023-11-19 18:18:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 78,900 KB
最終ジャッジ日時 2024-09-27 19:04:37
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,408 KB
testcase_01 AC 63 ms
67,228 KB
testcase_02 AC 64 ms
67,364 KB
testcase_03 AC 65 ms
68,320 KB
testcase_04 AC 65 ms
67,856 KB
testcase_05 AC 77 ms
71,768 KB
testcase_06 AC 78 ms
72,316 KB
testcase_07 AC 69 ms
69,592 KB
testcase_08 AC 71 ms
70,772 KB
testcase_09 AC 77 ms
71,964 KB
testcase_10 AC 71 ms
70,464 KB
testcase_11 AC 65 ms
67,796 KB
testcase_12 AC 69 ms
70,564 KB
testcase_13 AC 76 ms
72,184 KB
testcase_14 AC 95 ms
78,392 KB
testcase_15 AC 98 ms
78,900 KB
testcase_16 AC 94 ms
78,580 KB
testcase_17 AC 68 ms
69,788 KB
testcase_18 AC 77 ms
73,488 KB
testcase_19 AC 79 ms
73,620 KB
testcase_20 AC 95 ms
78,728 KB
testcase_21 AC 96 ms
78,764 KB
testcase_22 AC 76 ms
71,640 KB
testcase_23 AC 96 ms
78,592 KB
testcase_24 AC 95 ms
78,568 KB
testcase_25 AC 94 ms
78,400 KB
testcase_26 AC 65 ms
68,236 KB
testcase_27 AC 65 ms
68,468 KB
testcase_28 AC 66 ms
68,512 KB
testcase_29 AC 66 ms
68,688 KB
testcase_30 AC 68 ms
67,360 KB
testcase_31 AC 65 ms
68,464 KB
testcase_32 AC 68 ms
68,944 KB
testcase_33 AC 66 ms
70,060 KB
testcase_34 AC 67 ms
68,440 KB
testcase_35 AC 69 ms
68,840 KB
testcase_36 AC 63 ms
67,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List


def is_bipartite(G: List[List[int]]):
    n = len(G)
    C = [-1] * n
    for s in range(n):
        if C[s] != -1:
            continue

        C[s] = 0

        Q = [s]
        for u in Q:
            for v in G[u]:
                if C[v] == -1:
                    C[v] = C[u] ^ 1
                    Q.append(v)
                elif C[v] == C[u]:
                    return False
        
    return True


n, m = map(int, input().split())
G = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)

if is_bipartite(G):
    print("Yes")
else:
    print("No")
0