結果

問題 No.2072 Anatomy
ユーザー ニックネームニックネーム
提出日時 2022-09-16 21:46:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 916 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 48,384 KB
最終ジャッジ日時 2024-12-21 18:57:09
合計ジャッジ時間 17,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 798 ms
40,576 KB
testcase_09 AC 802 ms
39,808 KB
testcase_10 AC 818 ms
40,320 KB
testcase_11 AC 841 ms
41,088 KB
testcase_12 AC 659 ms
34,432 KB
testcase_13 AC 882 ms
44,544 KB
testcase_14 AC 588 ms
31,616 KB
testcase_15 AC 533 ms
29,952 KB
testcase_16 AC 883 ms
43,776 KB
testcase_17 AC 838 ms
40,960 KB
testcase_18 AC 452 ms
27,136 KB
testcase_19 AC 893 ms
45,312 KB
testcase_20 AC 916 ms
45,312 KB
testcase_21 AC 912 ms
48,384 KB
testcase_22 AC 907 ms
44,416 KB
testcase_23 AC 846 ms
42,112 KB
testcase_24 AC 852 ms
48,256 KB
testcase_25 AC 884 ms
45,312 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 875 ms
42,240 KB
testcase_28 AC 835 ms
45,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self, n):
        self.p = [-1]*n; self.c = [0]*n
    def f(self, x):
        if self.p[x] < 0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self, x, y):
        x = self.f(x); y = self.f(y)
        if -self.p[x] < -self.p[y]: x, y = y, x
        self.c[x] = max(self.c[x], self.c[y])+1
        if x == y: return
        self.p[x] += self.p[y]; self.p[y] = x
    def s(self, x, y): return self.f(x) == self.f(y)
n, m = map(int, input().split())
uv = [tuple(map(int, input().split())) for _ in range(m)]
uf = UF(n)
for u, v in uv[::-1]: uf.u(u-1, v-1)
print(uf.c[uf.f(0)])
0