結果

問題 No.2072 Anatomy
ユーザー ygd.ygd.
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,888 KB
testcase_01 AC 50 ms
54,144 KB
testcase_02 AC 58 ms
61,696 KB
testcase_03 AC 56 ms
62,208 KB
testcase_04 AC 51 ms
55,040 KB
testcase_05 AC 56 ms
61,440 KB
testcase_06 AC 57 ms
60,416 KB
testcase_07 AC 59 ms
62,592 KB
testcase_08 AC 634 ms
114,312 KB
testcase_09 AC 303 ms
124,304 KB
testcase_10 AC 555 ms
110,256 KB
testcase_11 AC 407 ms
118,872 KB
testcase_12 AC 348 ms
102,940 KB
testcase_13 AC 598 ms
119,736 KB
testcase_14 AC 485 ms
101,848 KB
testcase_15 AC 250 ms
108,940 KB
testcase_16 AC 643 ms
122,568 KB
testcase_17 AC 356 ms
125,540 KB
testcase_18 AC 227 ms
96,680 KB
testcase_19 AC 604 ms
119,384 KB
testcase_20 AC 673 ms
119,912 KB
testcase_21 AC 312 ms
131,660 KB
testcase_22 AC 616 ms
121,236 KB
testcase_23 AC 335 ms
128,236 KB
testcase_24 AC 319 ms
131,944 KB
testcase_25 AC 601 ms
119,452 KB
testcase_26 AC 49 ms
54,400 KB
testcase_27 AC 322 ms
128,364 KB
testcase_28 AC 468 ms
123,564 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