結果
問題 | No.2072 Anatomy |
ユーザー | dn6049949 |
提出日時 | 2022-09-16 22:16:11 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 450 ms / 2,000 ms |
コード長 | 1,489 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 103,740 KB |
最終ジャッジ日時 | 2024-12-21 21:26:14 |
合計ジャッジ時間 | 8,204 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
55,040 KB |
testcase_01 | AC | 44 ms
54,400 KB |
testcase_02 | AC | 47 ms
61,056 KB |
testcase_03 | AC | 48 ms
60,928 KB |
testcase_04 | AC | 46 ms
55,424 KB |
testcase_05 | AC | 48 ms
60,800 KB |
testcase_06 | AC | 46 ms
55,168 KB |
testcase_07 | AC | 49 ms
61,440 KB |
testcase_08 | AC | 437 ms
99,968 KB |
testcase_09 | AC | 187 ms
98,980 KB |
testcase_10 | AC | 365 ms
99,692 KB |
testcase_11 | AC | 275 ms
100,636 KB |
testcase_12 | AC | 223 ms
95,232 KB |
testcase_13 | AC | 380 ms
102,188 KB |
testcase_14 | AC | 321 ms
93,952 KB |
testcase_15 | AC | 163 ms
91,776 KB |
testcase_16 | AC | 391 ms
102,784 KB |
testcase_17 | AC | 216 ms
100,480 KB |
testcase_18 | AC | 148 ms
89,472 KB |
testcase_19 | AC | 371 ms
102,656 KB |
testcase_20 | AC | 450 ms
103,740 KB |
testcase_21 | AC | 193 ms
99,840 KB |
testcase_22 | AC | 415 ms
103,424 KB |
testcase_23 | AC | 215 ms
100,736 KB |
testcase_24 | AC | 196 ms
99,788 KB |
testcase_25 | AC | 369 ms
102,560 KB |
testcase_26 | AC | 46 ms
54,400 KB |
testcase_27 | AC | 216 ms
100,736 KB |
testcase_28 | AC | 343 ms
103,040 KB |
ソースコード
from collections import defaultdict, deque from heapq import heappush, heappop from itertools import permutations, accumulate import sys import math import bisect def LI(): return [int(x) for x in sys.stdin.readline().split()] def I(): return int(sys.stdin.readline()) def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] sys.setrecursionlimit(1000000) mod = 1000000007 class UnionFind: __slots__ = ["par", "rank", "size"] def __init__(self, n): self.par = list(range(n)) self.rank = [0]*n self.size = [1]*n def root(self, x): if x == self.par[x]: return x self.par[x] = self.root(self.par[x]) return self.par[x] def unite(self, x, y): x = self.root(x) y = self.root(y) if self.rank[x] < self.rank[y]: self.par[x] = y self.size[y] += self.size[x] else: self.par[y] = x self.size[x] += self.size[y] if self.rank[x] == self.rank[y]: self.rank[x] += 1 return def main(): n,m = LI() edges = LIR(m) uf = UnionFind(n) f = [0]*n for a,b in reversed(edges): a -= 1 b -= 1 ra = uf.root(a) rb = uf.root(b) if ra != rb: uf.unite(a,b) f[uf.root(a)] = max(f[ra],f[rb])+1 else: f[ra] += 1 print(max(f)) return if __name__ == "__main__": main()