結果

問題 No.2072 Anatomy
ユーザー ニックネームニックネーム
提出日時 2022-09-16 21:46:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,036 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,512 KB
最終ジャッジ日時 2024-06-01 12:19:37
合計ジャッジ時間 19,696 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 906 ms
40,704 KB
testcase_09 AC 879 ms
39,808 KB
testcase_10 AC 942 ms
40,192 KB
testcase_11 AC 925 ms
40,960 KB
testcase_12 AC 754 ms
34,560 KB
testcase_13 AC 1,004 ms
44,672 KB
testcase_14 AC 658 ms
31,744 KB
testcase_15 AC 585 ms
29,952 KB
testcase_16 AC 1,007 ms
43,648 KB
testcase_17 AC 916 ms
41,216 KB
testcase_18 AC 501 ms
27,136 KB
testcase_19 AC 1,034 ms
45,440 KB
testcase_20 AC 1,025 ms
45,312 KB
testcase_21 AC 959 ms
48,512 KB
testcase_22 AC 1,029 ms
44,416 KB
testcase_23 AC 953 ms
42,240 KB
testcase_24 AC 960 ms
48,512 KB
testcase_25 AC 1,036 ms
45,440 KB
testcase_26 AC 32 ms
10,752 KB
testcase_27 AC 953 ms
42,240 KB
testcase_28 AC 897 ms
45,312 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