結果

問題 No.2072 Anatomy
ユーザー ytftytft
提出日時 2022-09-22 20:46:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 933 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,376 KB
最終ジャッジ日時 2024-06-01 18:02:35
合計ジャッジ時間 13,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,340 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 52 ms
60,416 KB
testcase_03 AC 51 ms
61,696 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 48 ms
61,440 KB
testcase_06 AC 41 ms
54,656 KB
testcase_07 AC 53 ms
64,128 KB
testcase_08 AC 586 ms
124,948 KB
testcase_09 AC 492 ms
128,788 KB
testcase_10 AC 578 ms
118,400 KB
testcase_11 AC 592 ms
126,880 KB
testcase_12 AC 468 ms
112,512 KB
testcase_13 AC 600 ms
132,588 KB
testcase_14 AC 449 ms
106,624 KB
testcase_15 AC 383 ms
110,720 KB
testcase_16 AC 627 ms
132,872 KB
testcase_17 AC 551 ms
133,120 KB
testcase_18 AC 374 ms
104,740 KB
testcase_19 AC 621 ms
133,248 KB
testcase_20 AC 619 ms
133,120 KB
testcase_21 AC 543 ms
132,992 KB
testcase_22 AC 642 ms
133,232 KB
testcase_23 AC 546 ms
132,864 KB
testcase_24 AC 571 ms
132,992 KB
testcase_25 AC 613 ms
132,864 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 546 ms
133,376 KB
testcase_28 AC 450 ms
132,896 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