結果
問題 | No.2072 Anatomy |
ユーザー | ygd. |
提出日時 | 2022-09-16 22:32:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,333 bytes |
コンパイル時間 | 322 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 103,536 KB |
最終ジャッジ日時 | 2024-06-01 13:35:57 |
合計ジャッジ時間 | 9,702 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
55,540 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 50 ms
61,052 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 250 ms
97,676 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 285 ms
93,076 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 263 ms
100,332 KB |
testcase_22 | WA | - |
testcase_23 | AC | 256 ms
100,460 KB |
testcase_24 | AC | 249 ms
100,328 KB |
testcase_25 | WA | - |
testcase_26 | AC | 44 ms
54,736 KB |
testcase_27 | AC | 255 ms
100,336 KB |
testcase_28 | WA | - |
ソースコード
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) ans = 1 parSet = set([]) for i in reversed(range(M)): u,v = edges[i] if uf.find(u) in parSet or uf.find(v) in parSet: parSet = set([]) uf.union(u,v) parSet.add(uf.find(u)) ans += 1 else: uf.union(u,v) parSet.add(uf.find(u)) print(ans) if __name__ == '__main__': main()