結果

問題 No.2072 Anatomy
ユーザー ああいいああいい
提出日時 2022-09-17 23:23:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 93,304 KB
最終ジャッジ日時 2024-06-01 15:20:10
合計ジャッジ時間 7,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,800 KB
testcase_01 AC 37 ms
53,212 KB
testcase_02 AC 41 ms
55,604 KB
testcase_03 AC 43 ms
54,120 KB
testcase_04 AC 39 ms
53,752 KB
testcase_05 AC 41 ms
53,940 KB
testcase_06 AC 39 ms
53,824 KB
testcase_07 AC 43 ms
55,912 KB
testcase_08 AC 373 ms
90,232 KB
testcase_09 AC 196 ms
88,752 KB
testcase_10 AC 321 ms
91,184 KB
testcase_11 AC 252 ms
90,792 KB
testcase_12 AC 220 ms
86,712 KB
testcase_13 AC 304 ms
92,592 KB
testcase_14 AC 276 ms
85,760 KB
testcase_15 AC 164 ms
84,856 KB
testcase_16 AC 325 ms
92,848 KB
testcase_17 AC 225 ms
91,052 KB
testcase_18 AC 157 ms
84,608 KB
testcase_19 AC 313 ms
92,332 KB
testcase_20 AC 379 ms
93,236 KB
testcase_21 AC 200 ms
91,056 KB
testcase_22 AC 313 ms
92,460 KB
testcase_23 AC 199 ms
90,924 KB
testcase_24 AC 199 ms
91,056 KB
testcase_25 AC 305 ms
92,340 KB
testcase_26 AC 37 ms
52,520 KB
testcase_27 AC 198 ms
90,804 KB
testcase_28 AC 292 ms
93,304 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
dat = [0] * 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:
        dat[I] += 1
        return False
    if parent[I] < parent[J]:
        I,J = J,I
    u = max(dat[I],dat[J])
    parent[J] += parent[I]
    parent[I] = J
    dat[J] = u + 1
    return True
def isSame(i,j):
    return find(i) == find(j)

ans = 0

for u,v in reversed(edge):
    unite(u,v)
ans = max(dat)
print(ans)
0