結果

問題 No.2202 贅沢てりたまチキン
ユーザー ああいいああいい
提出日時 2023-02-04 16:05:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-07-03 13:17:52
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
52,608 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 34 ms
52,608 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 36 ms
55,040 KB
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 150 ms
79,232 KB
testcase_15 AC 150 ms
79,736 KB
testcase_16 AC 149 ms
79,616 KB
testcase_17 AC 153 ms
79,608 KB
testcase_18 AC 111 ms
77,832 KB
testcase_19 AC 115 ms
79,412 KB
testcase_20 AC 178 ms
80,000 KB
testcase_21 AC 179 ms
79,844 KB
testcase_22 AC 152 ms
76,264 KB
testcase_23 AC 224 ms
77,824 KB
testcase_24 AC 198 ms
76,928 KB
testcase_25 AC 374 ms
81,152 KB
testcase_26 AC 167 ms
79,488 KB
testcase_27 AC 157 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

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

C = 2 * N
parent = [-1] * C
def find(i):
    if parent[i] < 0:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    if parent[I] < parent[J]:
        I,J = J,I
    parent[J] += parent[I]
    parent[I] = J
    return True
def isSame(i,j):
    return find(i) == find(j)
for _ in range(M):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    unite(a,b + N)
    unite(a + N,b)
for i in range(N):
    if find(i) != find(i + N):
        print('No')
        exit()
print('Yes')
0