結果
問題 | No.2417 Div Count |
ユーザー | lloyz |
提出日時 | 2023-08-18 22:48:48 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,798 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 847,632 KB |
最終ジャッジ日時 | 2024-11-28 09:02:39 |
合計ジャッジ時間 | 8,704 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | MLE | - |
testcase_27 | RE | - |
testcase_28 | MLE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
ソースコード
from collections import defaultdict class UnionFind(): def __init__(self, n): ''' UnionFindクラス。nは要素数を表す。 ''' self.n = n self.parents = [-1] * n def find(self, x): ''' 要素xを含む集合の親を見つける関数。 ''' if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): ''' 要素xを含む集合と要素yを含む集合を合体する関数。 基本的には、要素数が多い集合に統合される。 要素数が同じときは要素yを含む集合に統合される。 ''' x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): ''' 要素xを含む集合の要素数を出す関数。 ''' return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) import math from functools import reduce mod = 998244353 def lcm_base(x, y): ''' 最小公倍数を求める関数 ''' return (x * y % mod) * pow(math.gcd(x, y) % mod, mod - 2, mod) % mod def lcm_list(numbers): return reduce(lcm_base, numbers, 1) n, m = map(int, input().split()) P = [i for i in range(n + 1)] for _ in range(m): t, *S = map(int, input().split()) NP = P[:] for i in range(t): ci, ni = S[i], S[(i + 1) % t] NP[ni] = P[ci] P = NP[:] G = [1 for _ in range(n + 1)] UF = UnionFind(n + 1) for i in range(1, n + 1): if P[i] == i: continue j = P[i] if UF.same(i, j): continue i_root = UF.find(i) j_root = UF.find(j) UF.union(i, j) root = UF.find(i) if root == i_root: G[i_root] += G[j_root] G[j_root] = 0 else: G[j_root] += G[i_root] G[i_root] = 0 N = [] for i in range(1, n + 1): if G[i] == 0: continue N.append(G[i]) print(lcm_list(N))