結果

問題 No.2072 Anatomy
ユーザー chineristACchineristAC
提出日時 2022-09-14 13:34:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 1,510 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 111,160 KB
最終ジャッジ日時 2024-05-08 18:42:06
合計ジャッジ時間 11,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,424 KB
testcase_01 AC 48 ms
55,808 KB
testcase_02 AC 53 ms
57,344 KB
testcase_03 AC 60 ms
63,872 KB
testcase_04 AC 51 ms
56,576 KB
testcase_05 AC 58 ms
63,232 KB
testcase_06 AC 52 ms
57,088 KB
testcase_07 AC 63 ms
65,024 KB
testcase_08 AC 517 ms
106,880 KB
testcase_09 AC 351 ms
105,856 KB
testcase_10 AC 505 ms
108,568 KB
testcase_11 AC 397 ms
106,976 KB
testcase_12 AC 361 ms
101,088 KB
testcase_13 AC 462 ms
108,292 KB
testcase_14 AC 410 ms
98,984 KB
testcase_15 AC 259 ms
96,384 KB
testcase_16 AC 496 ms
108,856 KB
testcase_17 AC 381 ms
107,348 KB
testcase_18 AC 240 ms
93,536 KB
testcase_19 AC 466 ms
108,944 KB
testcase_20 AC 550 ms
111,144 KB
testcase_21 AC 333 ms
107,648 KB
testcase_22 AC 561 ms
109,872 KB
testcase_23 AC 353 ms
108,064 KB
testcase_24 AC 300 ms
107,648 KB
testcase_25 AC 449 ms
109,704 KB
testcase_26 AC 44 ms
55,552 KB
testcase_27 AC 355 ms
107,904 KB
testcase_28 AC 486 ms
111,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFindVerSize():
    def __init__(self, N):
        self._parent = [n for n in range(0, N)]
        self._size = [1] * N
        self.group = N

    def find_root(self, x):
        if self._parent[x] == x: return x
        self._parent[x] = self.find_root(self._parent[x])
        stack = [x]
        while self._parent[stack[-1]]!=stack[-1]:
            stack.append(self._parent[stack[-1]])
        for v in stack:
            self._parent[v] = stack[-1]
        return self._parent[x]

    def unite(self, x, y):
        gx = self.find_root(x)
        gy = self.find_root(y)
        if gx == gy: return

        self.group -= 1

        if self._size[gx] < self._size[gy]:
            self._parent[gx] = gy
            self._size[gy] += self._size[gx]
        else:
            self._parent[gy] = gx
            self._size[gx] += self._size[gy]

    def get_size(self, x):
        return self._size[self.find_root(x)]

    def is_same_group(self, x, y):
        return self.find_root(x) == self.find_root(y)

import sys,random
from collections import deque

def solve(N,M,_E):
    E = [(u-1,v-1) for u,v in _E]
    uf = UnionFindVerSize(N)
    D = [0] * N
    for u,v in E[::-1]:
        pu,pv = uf.find_root(u),uf.find_root(v)
        if pu!=pv:
            uf.unite(pu,pv)
            D[uf.find_root(pu)] = max(D[pu],D[pv]) + 1
        else:
            D[pu] += 1
    
    return max(D)

N,M = map(int,input().split())
E = [tuple(map(int,input().split())) for _ in range(M)]

print(solve(N,M,E))
0