結果
問題 | No.2072 Anatomy |
ユーザー |
![]() |
提出日時 | 2022-09-16 22:49:52 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 673 ms / 2,000 ms |
コード長 | 2,290 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 131,944 KB |
最終ジャッジ日時 | 2024-12-21 22:10:50 |
合計ジャッジ時間 | 11,026 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 |
ソースコード
import sys#input = sys.stdin.readline#input = sys.stdin.buffer.readline #文字列はダメ#sys.setrecursionlimit(1000000)import math#import bisect#import itertools#import random#from heapq import heapify, heappop, heappushfrom collections import defaultdictfrom collections import deque#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]#from functools import lru_cache#@lru_cache(maxsize=None)#MOD = pow(10,9) + 7#MOD = 998244353#dx = [1,0,-1,0]#dy = [0,1,0,-1]#dx8 = [1,1,0,-1,-1,-1,0,1]#dy8 = [0,1,1,1,0,-1,-1,-1]def shift(x):return x//2 + pow(2,15) * (x%2)class UnionFind(object):def __init__(self, n=1):self.par = [i for i in range(n)]self.rank = [0 for _ in range(n)]self.size = [1 for _ in range(n)]def find(self, x):"""x が属するグループを探索して親を出す。"""if self.par[x] == x:return xelse:self.par[x] = self.find(self.par[x])return self.par[x]def union(self, x, y):"""x と y のグループを結合"""x = self.find(x)y = self.find(y)if x != y:if self.rank[x] < self.rank[y]:x, y = y, xif self.rank[x] == self.rank[y]:self.rank[x] += 1self.par[y] = xself.size[x] += self.size[y]def is_same(self, x, y):"""x と y が同じグループか否か"""return self.find(x) == self.find(y)def get_size(self, x):"""x が属するグループの要素数"""x = self.find(x)return self.size[x]def main():N,M = map(int,input().split())G = [[] for _ in range(N)]edges = []for i in range(M):u,v = map(int,input().split())u -= 1; v -= 1edges.append((u,v))uf = UnionFind(N)dic = defaultdict(int)for i in reversed(range(M)):u,v = edges[i]paru = uf.find(u)parv = uf.find(v)uf.union(u,v)par = uf.find(u)dic[par] = max(dic[paru], dic[parv]) + 1# print("X",dic[par])ans = max(dic.values())print(ans)if __name__ == '__main__':main()