結果

問題 No.2072 Anatomy
ユーザー roarisroaris
提出日時 2022-09-16 22:02:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 101,488 KB
最終ジャッジ日時 2024-06-01 13:00:21
合計ジャッジ時間 9,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,280 KB
testcase_01 AC 41 ms
54,340 KB
testcase_02 AC 43 ms
55,020 KB
testcase_03 AC 48 ms
62,628 KB
testcase_04 AC 43 ms
55,664 KB
testcase_05 AC 46 ms
60,100 KB
testcase_06 AC 44 ms
55,728 KB
testcase_07 AC 50 ms
61,984 KB
testcase_08 AC 378 ms
98,492 KB
testcase_09 AC 227 ms
98,420 KB
testcase_10 AC 353 ms
97,992 KB
testcase_11 AC 360 ms
99,168 KB
testcase_12 AC 301 ms
94,652 KB
testcase_13 AC 396 ms
100,864 KB
testcase_14 AC 304 ms
92,296 KB
testcase_15 AC 263 ms
91,388 KB
testcase_16 AC 395 ms
100,672 KB
testcase_17 AC 366 ms
99,948 KB
testcase_18 AC 241 ms
89,632 KB
testcase_19 AC 413 ms
101,444 KB
testcase_20 AC 416 ms
101,372 KB
testcase_21 AC 329 ms
100,168 KB
testcase_22 AC 397 ms
101,488 KB
testcase_23 AC 332 ms
100,200 KB
testcase_24 AC 328 ms
100,868 KB
testcase_25 AC 406 ms
101,456 KB
testcase_26 AC 42 ms
55,140 KB
testcase_27 AC 336 ms
100,652 KB
testcase_28 AC 308 ms
100,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N, M = map(int, input().split())
edges = [tuple(map(int, input().split())) for _ in range(M)]
dep = [0]*N
uf = Unionfind(N)

for u, v in edges[::-1]:
    u -= 1
    v -= 1
    
    if uf.is_same(u, v):
        dep[uf.root(u)] += 1
    else:
        ru = uf.root(u)
        rv = uf.root(v)
        uf.unite(u, v)
        dep[uf.root(u)] = max(dep[ru], dep[rv])+1

print(dep[uf.root(0)])
0