結果

問題 No.1917 LCMST
ユーザー PNJPNJ
提出日時 2024-08-29 19:55:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,964 ms / 4,000 ms
コード長 1,369 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 302,988 KB
最終ジャッジ日時 2024-08-29 19:56:38
合計ジャッジ時間 73,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
70,652 KB
testcase_01 AC 59 ms
70,132 KB
testcase_02 AC 57 ms
71,428 KB
testcase_03 AC 123 ms
78,948 KB
testcase_04 AC 115 ms
78,956 KB
testcase_05 AC 118 ms
78,988 KB
testcase_06 AC 114 ms
78,848 KB
testcase_07 AC 119 ms
79,260 KB
testcase_08 AC 56 ms
70,872 KB
testcase_09 AC 3,964 ms
289,352 KB
testcase_10 AC 3,600 ms
288,344 KB
testcase_11 AC 3,466 ms
280,988 KB
testcase_12 AC 3,096 ms
280,208 KB
testcase_13 AC 1,085 ms
237,624 KB
testcase_14 AC 3,385 ms
278,840 KB
testcase_15 AC 680 ms
236,732 KB
testcase_16 AC 1,172 ms
239,260 KB
testcase_17 AC 1,705 ms
242,464 KB
testcase_18 AC 2,112 ms
267,572 KB
testcase_19 AC 782 ms
235,652 KB
testcase_20 AC 545 ms
235,128 KB
testcase_21 AC 835 ms
235,672 KB
testcase_22 AC 550 ms
236,180 KB
testcase_23 AC 546 ms
235,112 KB
testcase_24 AC 766 ms
236,928 KB
testcase_25 AC 589 ms
235,304 KB
testcase_26 AC 617 ms
236,676 KB
testcase_27 AC 696 ms
236,528 KB
testcase_28 AC 725 ms
237,220 KB
testcase_29 AC 3,169 ms
290,268 KB
testcase_30 AC 3,140 ms
290,804 KB
testcase_31 AC 3,136 ms
290,504 KB
testcase_32 AC 3,118 ms
291,772 KB
testcase_33 AC 3,191 ms
290,572 KB
testcase_34 AC 251 ms
235,612 KB
testcase_35 AC 251 ms
237,116 KB
testcase_36 AC 275 ms
236,048 KB
testcase_37 AC 3,211 ms
302,988 KB
testcase_38 AC 3,337 ms
293,516 KB
testcase_39 AC 3,386 ms
294,208 KB
testcase_40 AC 3,339 ms
290,436 KB
testcase_41 AC 3,423 ms
291,412 KB
testcase_42 AC 3,641 ms
285,716 KB
testcase_43 AC 302 ms
235,272 KB
testcase_44 AC 316 ms
237,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
  while a != 0:
    b %= a
    if b == 0: return a
    a %= b
  return b

class UnionFind():
  def __init__(self,n):
    self.data = [-1 for i in range(n)]
  
  def find(self,x):
    stack = []
    while self.data[x] >= 0:
      stack.append(x)
      x = self.data[x]
    while len(stack):
      y = stack.pop()
      self.data[y] = x
    return x
  
  def unite(self,x,y):
    x,y = self.find(x),self.find(y)
    if x == y:
      return
    if self.data[x] > self.data[y]:
      x,y = y,x
    self.data[x] += self.data[y]
    self.data[y] = x
    return
  
  def same(self,x,y):
    return self.find(x) == self.find(y)
  
  def size(self,x):
    return -self.data[self.find(x)]


N = int(input())
A = list(map(int,input().split()))
M = 100000
B = [0] * (M + 1)
m = min(A)

for a in A:
  B[a] += 1

ans = 0
for a in range(1,M + 1):
  if B[a] == 0:
    continue
  ans += a * (B[a] - 1)
  B[a] = 1

A = []
for a in range(1,M + 1):
  if B[a]:
    A.append(a)

N = len(A)
E = []
for i in range(1,M + 1):
  X = []
  for j in range(1,M + 1):
    if i * j > M:
      break
    if B[i * j]:
      X.append(i * j)
  if len(X) == 0:
    continue
  x = X[0]
  for i in range(1,len(X)):
    l = (x * X[i]) // gcd(x,X[i])
    E.append((l,x - 1,X[i] - 1))
E.sort()
uf = UnionFind(M)
for c,u,v in E:
  if uf.same(u,v):
    continue
  uf.unite(u,v)
  ans += c
print(ans)
0