結果

問題 No.2072 Anatomy
ユーザー ntudantuda
提出日時 2022-09-18 22:23:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,796 KB
最終ジャッジ日時 2024-06-01 15:46:15
合計ジャッジ時間 8,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 45 ms
53,888 KB
testcase_04 AC 42 ms
52,992 KB
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 AC 46 ms
54,272 KB
testcase_08 AC 455 ms
98,084 KB
testcase_09 AC 255 ms
97,260 KB
testcase_10 AC 409 ms
99,360 KB
testcase_11 AC 319 ms
98,432 KB
testcase_12 AC 285 ms
94,208 KB
testcase_13 AC 380 ms
99,200 KB
testcase_14 AC 360 ms
92,464 KB
testcase_15 AC 215 ms
89,600 KB
testcase_16 AC 412 ms
100,064 KB
testcase_17 AC 295 ms
98,720 KB
testcase_18 AC 196 ms
87,668 KB
testcase_19 AC 381 ms
99,840 KB
testcase_20 AC 458 ms
100,796 KB
testcase_21 AC 261 ms
97,956 KB
testcase_22 AC 406 ms
100,548 KB
testcase_23 AC 259 ms
97,920 KB
testcase_24 AC 255 ms
97,916 KB
testcase_25 AC 348 ms
100,216 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 255 ms
98,056 KB
testcase_28 AC 374 ms
100,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def root(x):
    if P[x] < 0:
        return x
    else:
        P[x] = root(P[x])
        return P[x]
def unite(x, y):
    x = root(x)
    y = root(y)
    if x == y:
        P[x] -= 1
        return
    if x > y: x,y = y,x
    P[x] = min(P[x], P[y]) - 1
    P[y] = x

N, M = map(int, input().split())
UV = [list(map(int, input().split())) for _ in range(M)]
P = [-1] * (N + 1)
for u, v in reversed(UV):
    unite(u, v)
print(- P[1] - 1)
0