結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
73,720 KB
testcase_01 AC 71 ms
74,176 KB
testcase_02 AC 67 ms
73,096 KB
testcase_03 AC 65 ms
73,248 KB
testcase_04 AC 119 ms
85,936 KB
testcase_05 AC 155 ms
91,980 KB
testcase_06 AC 246 ms
100,960 KB
testcase_07 AC 221 ms
102,472 KB
testcase_08 AC 207 ms
100,112 KB
testcase_09 AC 197 ms
98,136 KB
testcase_10 AC 227 ms
105,228 KB
testcase_11 AC 264 ms
104,160 KB
testcase_12 AC 155 ms
88,956 KB
testcase_13 AC 253 ms
104,036 KB
testcase_14 AC 241 ms
103,684 KB
testcase_15 AC 147 ms
89,408 KB
testcase_16 AC 188 ms
98,196 KB
testcase_17 AC 221 ms
100,432 KB
testcase_18 AC 141 ms
89,036 KB
testcase_19 AC 256 ms
108,000 KB
testcase_20 AC 224 ms
104,028 KB
testcase_21 AC 165 ms
96,732 KB
testcase_22 AC 228 ms
106,960 KB
testcase_23 AC 128 ms
86,800 KB
testcase_24 AC 198 ms
100,964 KB
testcase_25 AC 211 ms
101,148 KB
testcase_26 AC 236 ms
104,504 KB
testcase_27 AC 244 ms
107,388 KB
testcase_28 AC 178 ms
98,120 KB
testcase_29 AC 212 ms
100,552 KB
testcase_30 AC 247 ms
107,288 KB
testcase_31 AC 167 ms
95,560 KB
testcase_32 AC 156 ms
107,580 KB
testcase_33 AC 116 ms
95,344 KB
testcase_34 AC 105 ms
87,476 KB
testcase_35 AC 176 ms
106,756 KB
testcase_36 AC 185 ms
105,940 KB
testcase_37 AC 67 ms
73,260 KB
testcase_38 AC 230 ms
108,132 KB
testcase_39 AC 254 ms
108,076 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