結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,000 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 44 ms
54,016 KB
testcase_04 AC 40 ms
53,248 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 44 ms
53,376 KB
testcase_07 AC 47 ms
59,648 KB
testcase_08 AC 408 ms
89,700 KB
testcase_09 AC 209 ms
88,624 KB
testcase_10 AC 393 ms
91,192 KB
testcase_11 AC 268 ms
90,164 KB
testcase_12 AC 247 ms
87,936 KB
testcase_13 AC 299 ms
90,928 KB
testcase_14 AC 316 ms
85,504 KB
testcase_15 AC 190 ms
86,272 KB
testcase_16 AC 418 ms
92,080 KB
testcase_17 AC 241 ms
90,804 KB
testcase_18 AC 188 ms
84,096 KB
testcase_19 AC 319 ms
91,188 KB
testcase_20 AC 366 ms
91,184 KB
testcase_21 AC 285 ms
115,384 KB
testcase_22 AC 392 ms
91,436 KB
testcase_23 AC 282 ms
117,040 KB
testcase_24 AC 259 ms
107,568 KB
testcase_25 AC 260 ms
89,900 KB
testcase_26 AC 41 ms
51,840 KB
testcase_27 AC 462 ms
191,664 KB
testcase_28 AC 295 ms
90,792 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[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