結果

問題 No.2072 Anatomy
ユーザー ああいいああいい
提出日時 2022-09-17 23:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 193,600 KB
最終ジャッジ日時 2024-06-01 15:20:02
合計ジャッジ時間 7,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,752 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 40 ms
54,708 KB
testcase_03 AC 41 ms
54,908 KB
testcase_04 AC 38 ms
53,428 KB
testcase_05 AC 41 ms
55,344 KB
testcase_06 AC 40 ms
55,048 KB
testcase_07 AC 44 ms
60,404 KB
testcase_08 AC 385 ms
89,444 KB
testcase_09 AC 196 ms
87,980 KB
testcase_10 AC 353 ms
90,164 KB
testcase_11 AC 247 ms
90,160 KB
testcase_12 AC 253 ms
87,372 KB
testcase_13 AC 284 ms
90,676 KB
testcase_14 AC 310 ms
85,368 KB
testcase_15 AC 175 ms
86,272 KB
testcase_16 AC 361 ms
91,180 KB
testcase_17 AC 235 ms
91,312 KB
testcase_18 AC 165 ms
83,756 KB
testcase_19 AC 284 ms
90,676 KB
testcase_20 AC 373 ms
91,440 KB
testcase_21 AC 273 ms
119,740 KB
testcase_22 AC 368 ms
91,948 KB
testcase_23 AC 276 ms
117,296 KB
testcase_24 AC 251 ms
113,584 KB
testcase_25 AC 213 ms
90,156 KB
testcase_26 AC 36 ms
53,348 KB
testcase_27 AC 442 ms
193,600 KB
testcase_28 AC 270 ms
90,800 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