結果

問題 No.2072 Anatomy
ユーザー ああいいああいい
提出日時 2022-09-17 23:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 191,280 KB
最終ジャッジ日時 2024-12-22 01:00:14
合計ジャッジ時間 8,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 45 ms
54,528 KB
testcase_04 AC 42 ms
53,120 KB
testcase_05 AC 46 ms
53,504 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 49 ms
59,136 KB
testcase_08 AC 393 ms
89,564 KB
testcase_09 AC 206 ms
87,732 KB
testcase_10 AC 366 ms
90,168 KB
testcase_11 AC 259 ms
90,032 KB
testcase_12 AC 256 ms
87,168 KB
testcase_13 AC 292 ms
90,676 KB
testcase_14 AC 318 ms
85,408 KB
testcase_15 AC 209 ms
86,272 KB
testcase_16 AC 361 ms
91,568 KB
testcase_17 AC 238 ms
90,804 KB
testcase_18 AC 167 ms
84,096 KB
testcase_19 AC 283 ms
90,796 KB
testcase_20 AC 373 ms
91,692 KB
testcase_21 AC 269 ms
119,860 KB
testcase_22 AC 379 ms
92,060 KB
testcase_23 AC 287 ms
117,040 KB
testcase_24 AC 256 ms
114,224 KB
testcase_25 AC 214 ms
89,904 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 450 ms
191,280 KB
testcase_28 AC 275 ms
90,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

N,M = map(int,input().split())
edge = []
for _ in range(M):
    u,v = map(int,input().split())
    edge.append((u-1,v-1))

parent = [-1] * N
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:
        parent[I] -= 1
        return False
    t = min(parent[I],parent[J])
    parent[I] = J
    parent[i] = J
    parent[J] = t - 1
    return True
def isSame(i,j):
    return find(i) == find(j)

ans = 0

for u,v in reversed(edge):
    unite(u,v)
ans = min(parent)
print(-ans - 1)
0