結果
問題 | No.2756 GCD Teleporter |
ユーザー | rlangevin |
提出日時 | 2024-05-12 17:53:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 381 ms / 2,000 ms |
コード長 | 1,910 bytes |
コンパイル時間 | 315 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 108,068 KB |
最終ジャッジ日時 | 2024-12-20 09:11:57 |
合計ジャッジ時間 | 10,876 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
66,788 KB |
testcase_01 | AC | 59 ms
65,104 KB |
testcase_02 | AC | 58 ms
65,536 KB |
testcase_03 | AC | 58 ms
65,876 KB |
testcase_04 | AC | 129 ms
79,552 KB |
testcase_05 | AC | 188 ms
84,584 KB |
testcase_06 | AC | 310 ms
100,596 KB |
testcase_07 | AC | 268 ms
95,836 KB |
testcase_08 | AC | 250 ms
93,840 KB |
testcase_09 | AC | 234 ms
91,684 KB |
testcase_10 | AC | 300 ms
98,348 KB |
testcase_11 | AC | 337 ms
104,288 KB |
testcase_12 | AC | 146 ms
82,064 KB |
testcase_13 | AC | 323 ms
104,172 KB |
testcase_14 | AC | 311 ms
104,364 KB |
testcase_15 | AC | 162 ms
83,080 KB |
testcase_16 | AC | 226 ms
91,492 KB |
testcase_17 | AC | 242 ms
93,768 KB |
testcase_18 | AC | 159 ms
82,136 KB |
testcase_19 | AC | 338 ms
107,264 KB |
testcase_20 | AC | 282 ms
104,712 KB |
testcase_21 | AC | 184 ms
89,896 KB |
testcase_22 | AC | 298 ms
107,364 KB |
testcase_23 | AC | 130 ms
80,064 KB |
testcase_24 | AC | 247 ms
98,924 KB |
testcase_25 | AC | 258 ms
101,344 KB |
testcase_26 | AC | 283 ms
104,376 KB |
testcase_27 | AC | 294 ms
107,124 KB |
testcase_28 | AC | 218 ms
91,844 KB |
testcase_29 | AC | 269 ms
98,224 KB |
testcase_30 | AC | 315 ms
107,300 KB |
testcase_31 | AC | 201 ms
88,364 KB |
testcase_32 | AC | 187 ms
108,068 KB |
testcase_33 | AC | 124 ms
88,372 KB |
testcase_34 | AC | 110 ms
79,824 KB |
testcase_35 | AC | 228 ms
106,572 KB |
testcase_36 | AC | 222 ms
106,372 KB |
testcase_37 | AC | 59 ms
65,980 KB |
testcase_38 | AC | 304 ms
108,004 KB |
testcase_39 | AC | 381 ms
107,636 KB |
ソースコード
class Factorization(): def __init__(self, N): self.L = list(range(N + 1)) for i in range(2, N + 1): if i != self.L[i]: continue for j in range(2 * i, N + 1, i): self.L[j] = i def get(self, n): if n <= 1: return [] D = [] while n != 1: cnt = 0 now = self.L[n] while n % now == 0: cnt += 1 n //= now D.append((now, cnt)) return D class UnionFind(): 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): 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 = 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): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] N = int(input()) A = list(map(int, input().split())) M = 2 * 10 ** 5 + 5 F = Factorization(M) now = N from collections import * D = defaultdict(int) for a in A: for k, v in F.get(a): if k not in D: D[k] = now now += 1 U = UnionFind(now) mi = 10 ** 18 for i, a in enumerate(A): for k, v in F.get(a): mi = min(mi, k) U.union(i, D[k]) S = set() for i in range(N): S.add(U.find(i)) if mi == 2: print((len(S) - 1) * 2) else: print(min(2 * len(S), mi * (len(S) - 1)))