結果

問題 No.2072 Anatomy
ユーザー ygd.ygd.
提出日時 2022-09-16 22:49:52
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 819 ms / 2,000 ms
コード長 2,290 bytes
コンパイル時間 285 ms
使用メモリ 145,184 KB
最終ジャッジ日時 2023-01-11 08:08:25
合計ジャッジ時間 14,841 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 99 ms
76,840 KB
testcase_01 AC 99 ms
76,720 KB
testcase_02 AC 109 ms
81,412 KB
testcase_03 AC 112 ms
81,340 KB
testcase_04 AC 104 ms
76,696 KB
testcase_05 AC 108 ms
81,164 KB
testcase_06 AC 107 ms
80,980 KB
testcase_07 AC 112 ms
81,212 KB
testcase_08 AC 771 ms
128,660 KB
testcase_09 AC 453 ms
137,064 KB
testcase_10 AC 693 ms
124,744 KB
testcase_11 AC 545 ms
130,976 KB
testcase_12 AC 472 ms
114,444 KB
testcase_13 AC 729 ms
134,840 KB
testcase_14 AC 609 ms
112,308 KB
testcase_15 AC 358 ms
114,544 KB
testcase_16 AC 778 ms
137,844 KB
testcase_17 AC 496 ms
137,120 KB
testcase_18 AC 326 ms
107,068 KB
testcase_19 AC 739 ms
134,728 KB
testcase_20 AC 819 ms
136,092 KB
testcase_21 AC 458 ms
144,972 KB
testcase_22 AC 762 ms
137,680 KB
testcase_23 AC 467 ms
136,568 KB
testcase_24 AC 446 ms
145,184 KB
testcase_25 AC 725 ms
133,848 KB
testcase_26 AC 100 ms
76,564 KB
testcase_27 AC 471 ms
136,324 KB
testcase_28 AC 624 ms
134,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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, heappush
from collections import defaultdict 
from 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 x
        else:
            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, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.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 -= 1
        edges.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()
0