結果

問題 No.2072 Anatomy
ユーザー dn6049949dn6049949
提出日時 2022-09-16 22:16:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 1,489 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 103,888 KB
最終ジャッジ日時 2024-06-01 13:22:53
合計ジャッジ時間 8,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
56,576 KB
testcase_01 AC 56 ms
55,768 KB
testcase_02 AC 58 ms
62,108 KB
testcase_03 AC 61 ms
61,620 KB
testcase_04 AC 50 ms
56,068 KB
testcase_05 AC 54 ms
61,852 KB
testcase_06 AC 49 ms
56,804 KB
testcase_07 AC 53 ms
63,420 KB
testcase_08 AC 459 ms
100,160 KB
testcase_09 AC 218 ms
99,224 KB
testcase_10 AC 394 ms
99,636 KB
testcase_11 AC 290 ms
100,460 KB
testcase_12 AC 249 ms
95,480 KB
testcase_13 AC 401 ms
102,100 KB
testcase_14 AC 347 ms
94,184 KB
testcase_15 AC 176 ms
91,768 KB
testcase_16 AC 420 ms
102,568 KB
testcase_17 AC 249 ms
100,796 KB
testcase_18 AC 165 ms
89,712 KB
testcase_19 AC 407 ms
103,000 KB
testcase_20 AC 467 ms
103,888 KB
testcase_21 AC 213 ms
100,068 KB
testcase_22 AC 421 ms
103,616 KB
testcase_23 AC 230 ms
100,872 KB
testcase_24 AC 214 ms
99,724 KB
testcase_25 AC 399 ms
102,484 KB
testcase_26 AC 47 ms
55,236 KB
testcase_27 AC 233 ms
101,376 KB
testcase_28 AC 361 ms
103,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

class UnionFind:

    __slots__ = ["par", "rank", "size"]

    def __init__(self, n):
        self.par = list(range(n))
        self.rank = [0]*n
        self.size = [1]*n

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

    def unite(self, x, y):
        x = self.root(x)
        y = self.root(y)
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
        return


def main():
    n,m = LI()
    edges = LIR(m)
    uf = UnionFind(n)
    f = [0]*n
    for a,b in reversed(edges):
        a -= 1
        b -= 1
        ra = uf.root(a)
        rb = uf.root(b)
        if ra != rb:
            uf.unite(a,b)
            f[uf.root(a)] = max(f[ra],f[rb])+1
        else:
            f[ra] += 1
    print(max(f))
    return


if __name__ == "__main__":
    main()
0