結果

問題 No.2756 GCD Teleporter
ユーザー rlangevinrlangevin
提出日時 2024-05-12 17:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,868 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 108,304 KB
最終ジャッジ日時 2024-05-12 17:58:05
合計ジャッジ時間 8,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
73,268 KB
testcase_01 AC 61 ms
74,016 KB
testcase_02 AC 55 ms
73,476 KB
testcase_03 AC 56 ms
73,788 KB
testcase_04 AC 104 ms
86,072 KB
testcase_05 AC 137 ms
92,120 KB
testcase_06 AC 211 ms
101,280 KB
testcase_07 AC 184 ms
102,788 KB
testcase_08 AC 197 ms
100,836 KB
testcase_09 AC 169 ms
98,644 KB
testcase_10 AC 198 ms
105,388 KB
testcase_11 AC 224 ms
104,580 KB
testcase_12 AC 128 ms
89,064 KB
testcase_13 AC 215 ms
104,504 KB
testcase_14 AC 211 ms
104,104 KB
testcase_15 AC 154 ms
89,948 KB
testcase_16 AC 161 ms
98,552 KB
testcase_17 AC 182 ms
100,540 KB
testcase_18 AC 122 ms
89,080 KB
testcase_19 AC 210 ms
107,508 KB
testcase_20 AC 205 ms
104,388 KB
testcase_21 AC 153 ms
96,936 KB
testcase_22 AC 230 ms
107,536 KB
testcase_23 AC 114 ms
86,812 KB
testcase_24 AC 183 ms
101,116 KB
testcase_25 AC 198 ms
101,444 KB
testcase_26 AC 215 ms
104,460 KB
testcase_27 AC 217 ms
108,068 KB
testcase_28 AC 193 ms
98,324 KB
testcase_29 AC 193 ms
101,012 KB
testcase_30 AC 226 ms
107,376 KB
testcase_31 AC 145 ms
95,512 KB
testcase_32 AC 131 ms
108,176 KB
testcase_33 AC 97 ms
95,892 KB
testcase_34 AC 88 ms
88,028 KB
testcase_35 AC 149 ms
107,536 KB
testcase_36 AC 181 ms
106,316 KB
testcase_37 AC 58 ms
73,544 KB
testcase_38 AC 191 ms
108,304 KB
testcase_39 AC 222 ms
107,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
U = UnionFind(3*10**5+5)
mi = 10 ** 18
for i, a in enumerate(A):
    for k, v in F.get(a):
        mi = min(mi, k)
        if k not in D:
            D[k] = now
            now += 1
        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)))
0