結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2022-02-28 13:43:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,051 ms / 4,000 ms
コード長 1,193 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 319,060 KB
最終ジャッジ日時 2024-06-28 08:00:19
合計ジャッジ時間 42,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,896 KB
testcase_01 AC 52 ms
65,536 KB
testcase_02 AC 52 ms
64,896 KB
testcase_03 AC 83 ms
78,900 KB
testcase_04 AC 76 ms
76,032 KB
testcase_05 AC 84 ms
79,140 KB
testcase_06 AC 79 ms
77,084 KB
testcase_07 AC 76 ms
75,008 KB
testcase_08 AC 54 ms
65,152 KB
testcase_09 AC 1,696 ms
316,092 KB
testcase_10 AC 1,693 ms
316,456 KB
testcase_11 AC 1,647 ms
314,900 KB
testcase_12 AC 1,339 ms
299,552 KB
testcase_13 AC 525 ms
244,064 KB
testcase_14 AC 1,479 ms
302,888 KB
testcase_15 AC 414 ms
243,928 KB
testcase_16 AC 549 ms
244,188 KB
testcase_17 AC 703 ms
244,312 KB
testcase_18 AC 894 ms
249,368 KB
testcase_19 AC 484 ms
245,724 KB
testcase_20 AC 393 ms
244,444 KB
testcase_21 AC 509 ms
244,544 KB
testcase_22 AC 403 ms
245,324 KB
testcase_23 AC 395 ms
244,700 KB
testcase_24 AC 493 ms
244,824 KB
testcase_25 AC 415 ms
245,208 KB
testcase_26 AC 434 ms
245,088 KB
testcase_27 AC 446 ms
245,088 KB
testcase_28 AC 497 ms
244,828 KB
testcase_29 AC 1,985 ms
318,528 KB
testcase_30 AC 1,976 ms
318,776 KB
testcase_31 AC 1,976 ms
318,528 KB
testcase_32 AC 2,051 ms
318,904 KB
testcase_33 AC 1,967 ms
318,708 KB
testcase_34 AC 243 ms
226,012 KB
testcase_35 AC 236 ms
226,012 KB
testcase_36 AC 238 ms
226,392 KB
testcase_37 AC 1,992 ms
318,796 KB
testcase_38 AC 2,015 ms
318,916 KB
testcase_39 AC 1,968 ms
318,632 KB
testcase_40 AC 1,977 ms
318,804 KB
testcase_41 AC 1,964 ms
318,652 KB
testcase_42 AC 1,870 ms
319,060 KB
testcase_43 AC 266 ms
235,996 KB
testcase_44 AC 271 ms
237,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, 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 = 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):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

def MST(n,edge):
  uf=UnionFind(n)
  ans=0
  for cost,u,v in edge:
    if not uf.same(u,v):
      ans+=cost
      uf.union(u,v)
  return ans

n=int(input())
a=list(map(int,input().split()))
m=10**5
d=[-1]*(m+1)
cnt=[0]*(m+1)

ans=0
for i in a:
  if cnt[i]==0:
    cnt[i]=1
  else:
    ans+=i

edge=[]
for i in range(1,m+1):
  for j in range(i,m+1,i):
    if cnt[j]==1:
      if d[i]==-1:
        d[i]=j
      else:
        edge.append((d[i]*j//i,d[i],j))

edge.sort(key=lambda x:x[0])
ans+=MST(m+1,edge)
print(ans)
0