結果

問題 No.2072 Anatomy
ユーザー shotoyooshotoyoo
提出日時 2022-09-16 22:31:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,722 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 103,364 KB
最終ジャッジ日時 2024-12-21 21:46:18
合計ジャッジ時間 6,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,656 KB
testcase_01 AC 39 ms
54,668 KB
testcase_02 AC 41 ms
56,336 KB
testcase_03 AC 42 ms
56,044 KB
testcase_04 AC 39 ms
56,164 KB
testcase_05 AC 42 ms
56,752 KB
testcase_06 AC 43 ms
55,168 KB
testcase_07 AC 43 ms
55,936 KB
testcase_08 AC 247 ms
100,096 KB
testcase_09 AC 177 ms
99,712 KB
testcase_10 AC 259 ms
100,284 KB
testcase_11 AC 244 ms
101,760 KB
testcase_12 AC 207 ms
96,768 KB
testcase_13 AC 264 ms
102,528 KB
testcase_14 AC 203 ms
93,376 KB
testcase_15 AC 154 ms
92,692 KB
testcase_16 AC 253 ms
102,392 KB
testcase_17 AC 247 ms
102,068 KB
testcase_18 AC 145 ms
90,636 KB
testcase_19 AC 257 ms
103,364 KB
testcase_20 AC 256 ms
102,980 KB
testcase_21 AC 219 ms
102,504 KB
testcase_22 AC 256 ms
102,948 KB
testcase_23 AC 233 ms
102,424 KB
testcase_24 AC 217 ms
102,576 KB
testcase_25 AC 256 ms
103,188 KB
testcase_26 AC 38 ms
54,684 KB
testcase_27 AC 239 ms
102,864 KB
testcase_28 AC 217 ms
103,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input())
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]


class UF:
    # unionfind
    def __init__(self, n):
        self.n = n
        self.parent = list(range(n))
        self.size = [1] * n
        self.es = [0] * n
    def check(self):
        return [self.root(i) for i in range(self.n)]
    def root(self, i):
        inter = set()
        while self.parent[i]!=i:
            inter.add(i)
            i = self.parent[i]
        r = i
        for i in inter:
            self.parent[i] = r
        return r
    def merge(self, i, j, t):
        # 繋いだかどうかを返す
        ri = self.root(i)
        rj = self.root(j)
        if ri==rj:
            self.es[ri] += 1
            return False
        if self.size[ri]>self.size[rj]:
            ri,rj = rj,ri
        self.parent[ri] = rj
        self.size[rj] += self.size[ri]
        self.es[rj] = max(self.es[rj], self.es[ri]) + 1
        return True
    def rs(self):
        return sorted(set([self.root(i) for i in range(self.n)]))
n,m = LI()
uv = [LI() for _ in range(m)]
uf = UF(n)
e = n
val = 0
ans = 0
for i in range(m)[::-1]:
    u,v = uv[i]
    u -= 1
    v -= 1
    uf.merge(u,v,ans)
ans = uf.es[uf.root(0)]
print(ans)
0