結果

問題 No.1917 LCMST
ユーザー i_am_noobi_am_noob
提出日時 2023-02-11 02:39:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 4,000 ms
コード長 981 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 211,580 KB
実行使用メモリ 21,284 KB
最終ジャッジ日時 2024-07-07 19:30:33
合計ジャッジ時間 8,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 90 ms
9,616 KB
testcase_10 AC 88 ms
9,524 KB
testcase_11 AC 91 ms
11,192 KB
testcase_12 AC 123 ms
21,284 KB
testcase_13 AC 125 ms
21,104 KB
testcase_14 AC 110 ms
14,904 KB
testcase_15 AC 104 ms
15,168 KB
testcase_16 AC 129 ms
20,496 KB
testcase_17 AC 152 ms
20,748 KB
testcase_18 AC 146 ms
20,684 KB
testcase_19 AC 99 ms
12,220 KB
testcase_20 AC 91 ms
12,452 KB
testcase_21 AC 99 ms
11,320 KB
testcase_22 AC 91 ms
12,196 KB
testcase_23 AC 92 ms
11,168 KB
testcase_24 AC 100 ms
11,316 KB
testcase_25 AC 95 ms
11,816 KB
testcase_26 AC 94 ms
11,308 KB
testcase_27 AC 94 ms
12,460 KB
testcase_28 AC 96 ms
12,468 KB
testcase_29 AC 78 ms
7,880 KB
testcase_30 AC 79 ms
7,872 KB
testcase_31 AC 80 ms
7,892 KB
testcase_32 AC 79 ms
7,980 KB
testcase_33 AC 80 ms
7,952 KB
testcase_34 AC 79 ms
7,788 KB
testcase_35 AC 77 ms
7,904 KB
testcase_36 AC 78 ms
7,932 KB
testcase_37 AC 79 ms
8,456 KB
testcase_38 AC 80 ms
8,536 KB
testcase_39 AC 80 ms
8,548 KB
testcase_40 AC 81 ms
8,360 KB
testcase_41 AC 80 ms
8,436 KB
testcase_42 AC 81 ms
8,564 KB
testcase_43 AC 80 ms
8,272 KB
testcase_44 AC 80 ms
8,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using pii=pair<int,int>;

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int maxn=100005;

int par[maxn];
int Find(int x){return x==par[x]?x:par[x]=Find(par[x]);}

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    int n; cin >> n;
    vector<int> a(n),cnt(maxn);
    vector<array<ll,3>> e;
    for(int i=0; i<maxn; ++i) par[i]=i;
    for(auto& i: a) cin >> i,cnt[i]++;
    ll res=0;
    for(int i=1; i<maxn; ++i) if(cnt[i]){
        res+=1ll*(cnt[i]-1)*i,cnt[i]=1;
        for(int j=i*2; j<maxn; j+=i) res+=1ll*cnt[j]*j,cnt[j]=0;
    }
    for(int i=1; i<maxn; ++i){
        vector<int> vec;
        for(int j=i; j<maxn; j+=i) if(cnt[j]) vec.pb(j);
        for(int j=1; j<vec.size(); ++j) e.pb({1ll*vec[0]*vec[j]/i,vec[0],vec[j]});
    }
    sort(all(e));
    for(auto& [w,u,v]: e) if(Find(u)!=Find(v)) par[Find(u)]=Find(v),res+=w;
    cout << res << "\n";
}
0