結果

問題 No.2072 Anatomy
ユーザー rlangevinrlangevin
提出日時 2023-01-27 22:45:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 90,000 KB
最終ジャッジ日時 2024-06-28 07:43:32
合計ジャッジ時間 10,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 53 ms
59,904 KB
testcase_03 AC 55 ms
60,672 KB
testcase_04 AC 48 ms
58,496 KB
testcase_05 AC 51 ms
59,648 KB
testcase_06 AC 52 ms
59,264 KB
testcase_07 AC 54 ms
60,544 KB
testcase_08 AC 600 ms
89,208 KB
testcase_09 AC 226 ms
85,632 KB
testcase_10 AC 453 ms
86,928 KB
testcase_11 AC 319 ms
86,452 KB
testcase_12 AC 272 ms
83,380 KB
testcase_13 AC 480 ms
88,524 KB
testcase_14 AC 404 ms
84,980 KB
testcase_15 AC 204 ms
82,560 KB
testcase_16 AC 483 ms
89,816 KB
testcase_17 AC 279 ms
86,500 KB
testcase_18 AC 193 ms
81,920 KB
testcase_19 AC 486 ms
89,464 KB
testcase_20 AC 614 ms
90,000 KB
testcase_21 AC 213 ms
86,016 KB
testcase_22 AC 477 ms
89,504 KB
testcase_23 AC 217 ms
86,272 KB
testcase_24 AC 205 ms
85,888 KB
testcase_25 AC 462 ms
88,532 KB
testcase_26 AC 42 ms
52,224 KB
testcase_27 AC 227 ms
86,400 KB
testcase_28 AC 435 ms
89,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]
    

N, M = map(int, input().split())
A, B = [0] * M, [0] * M
for i in range(M):
    A[i], B[i] = map(int, input().split())
A.reverse()
B.reverse()

U = UnionFind(N)
dp = [0] * N
for i in range(M):
    a, b = A[i], B[i]
    a, b = a - 1, b - 1
    if U.is_same(a, b):
        dp[U.find(a)] += 1
        continue
    v = max(dp[U.find(a)], dp[U.find(b)])
    U.union(a, b)
    dp[U.find(a)] = max(dp[U.find(a)], v + 1)
print(max(dp))
0