結果

問題 No.1917 LCMST
ユーザー KKT89KKT89
提出日時 2022-04-30 17:42:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 4,000 ms
コード長 2,300 bytes
コンパイル時間 1,619 ms
コンパイル使用メモリ 149,752 KB
実行使用メモリ 42,372 KB
最終ジャッジ日時 2024-06-29 22:47:03
合計ジャッジ時間 12,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 5 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 6 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 272 ms
24,760 KB
testcase_10 AC 280 ms
25,900 KB
testcase_11 AC 284 ms
24,800 KB
testcase_12 AC 242 ms
25,008 KB
testcase_13 AC 180 ms
17,908 KB
testcase_14 AC 250 ms
26,356 KB
testcase_15 AC 164 ms
12,876 KB
testcase_16 AC 184 ms
17,172 KB
testcase_17 AC 195 ms
24,780 KB
testcase_18 AC 218 ms
25,372 KB
testcase_19 AC 164 ms
12,876 KB
testcase_20 AC 153 ms
10,180 KB
testcase_21 AC 169 ms
12,492 KB
testcase_22 AC 150 ms
10,312 KB
testcase_23 AC 154 ms
10,184 KB
testcase_24 AC 163 ms
12,492 KB
testcase_25 AC 153 ms
10,184 KB
testcase_26 AC 157 ms
10,184 KB
testcase_27 AC 160 ms
12,368 KB
testcase_28 AC 160 ms
12,620 KB
testcase_29 AC 282 ms
42,372 KB
testcase_30 AC 287 ms
41,028 KB
testcase_31 AC 298 ms
42,304 KB
testcase_32 AC 290 ms
41,008 KB
testcase_33 AC 293 ms
41,740 KB
testcase_34 AC 95 ms
7,764 KB
testcase_35 AC 96 ms
7,628 KB
testcase_36 AC 93 ms
7,808 KB
testcase_37 AC 285 ms
41,912 KB
testcase_38 AC 286 ms
41,784 KB
testcase_39 AC 283 ms
41,360 KB
testcase_40 AC 280 ms
41,520 KB
testcase_41 AC 285 ms
41,156 KB
testcase_42 AC 286 ms
41,092 KB
testcase_43 AC 98 ms
8,192 KB
testcase_44 AC 95 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
#include <deque>
#include <stack>
#include <sstream>
#include <utility>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
#include <tuple>
#include <array>
#include <bitset>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

struct UnionFind{
    vector<int> par,num;
    UnionFind(int n):par(n),num(n,1){
        iota(par.begin(),par.end(),0);  //include<numeric>
    }
    int find(int v){
        return (par[v]==v)?v:(par[v]=find(par[v]));
    }
    void unite(int u,int v){
        u=find(u),v=find(v);
        if(u==v)return;
        if(num[u]<num[v])swap(u,v);
        num[u]+=num[v];
        par[v]=u;
    }
    bool same(int u,int v){
        return find(u) == find(v);
    }
    int size(int v){
        return num[find(v)];
    }
};

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    vector<int> a(n);
    for(int i=0;i<n;i++){
        cin >> a[i];
    }
    sort(a.begin(), a.end());
    int m = a.back();
    vector<bool> ex(m+1);
    ll res = 0;
    for(int i=0;i<n;i++){
        ex[a[i]] = 1;
        if(i and a[i] == a[i-1]){
            res += a[i];
        }
    }
    UnionFind uf(m+1);
    vector<pair<ll,pair<int,int>>> v;
    for(int g=1;g<=m;g++){
        int f = -1;
        for(int i=g;i<=m;i+=g){
            if(ex[i]){
                if(f == -1){
                    f = i;
                }
                else{
                    v.push_back({(ll)f*(ll)i/g, {f,i}});
                }
            }
        }
    }
    sort(v.begin(), v.end());
    for(auto p:v){
        int x = p.second.first, y = p.second.second;
        if(!uf.same(x,y)){
            uf.unite(x,y);
            res += p.first;
        }
    }
    cout << res << endl;
}

0