結果

問題 No.2072 Anatomy
ユーザー ytftytft
提出日時 2022-09-22 20:46:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 132,992 KB
最終ジャッジ日時 2024-12-22 05:04:03
合計ジャッジ時間 14,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 50 ms
60,416 KB
testcase_03 AC 50 ms
61,312 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 48 ms
60,904 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 54 ms
63,872 KB
testcase_08 AC 613 ms
125,000 KB
testcase_09 AC 515 ms
128,848 KB
testcase_10 AC 633 ms
118,400 KB
testcase_11 AC 604 ms
126,808 KB
testcase_12 AC 512 ms
112,376 KB
testcase_13 AC 660 ms
132,464 KB
testcase_14 AC 487 ms
106,880 KB
testcase_15 AC 434 ms
110,848 KB
testcase_16 AC 696 ms
132,956 KB
testcase_17 AC 618 ms
132,812 KB
testcase_18 AC 383 ms
104,524 KB
testcase_19 AC 683 ms
132,872 KB
testcase_20 AC 688 ms
132,992 KB
testcase_21 AC 590 ms
132,864 KB
testcase_22 AC 719 ms
132,864 KB
testcase_23 AC 592 ms
132,912 KB
testcase_24 AC 620 ms
132,864 KB
testcase_25 AC 678 ms
132,736 KB
testcase_26 AC 40 ms
52,608 KB
testcase_27 AC 584 ms
132,944 KB
testcase_28 AC 491 ms
132,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
class unionFind:
    def __init__(self,N):
        self.N=N
        self.parent=[-1 for i in range(N)]
        self.size=[1 for i in range(N)]
    def find(self,x):
        path=[x]
        while self.parent[path[-1]]!=-1:
            path.append(self.parent[path[-1]])
        for i in path[:-1]:
            self.parent[i]=path[-1]
        return path[-1]
    def unite(self,x,y):
        roots=sorted([self.find(x),self.find(y)],key=lambda _:self.parent[_])
        if roots[0]!=roots[1]:
            self.parent[roots[0]]=roots[1]
            self.size[roots[1]]+=self.size[roots[0]]

N,M=map(int,input().split())
A=[list(map(lambda x:int(x)-1,input().split())) for i in range(M)][::-1]
U=unionFind(N)
mem={}
for i in range(N):
	mem[U.find(i)]=0
for i in A:
	temp=max(mem[U.find(i[0])],mem[U.find(i[1])])+1
	U.unite(i[0],i[1])
	mem[U.find(i[0])]=temp
print(max(mem.values()))
0