結果

問題 No.2756 GCD Teleporter
ユーザー MZKiMZKi
提出日時 2023-03-13 18:55:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,809 bytes
コンパイル時間 4,542 ms
コンパイル使用メモリ 272,060 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-09-18 07:39:17
合計ジャッジ時間 10,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,812 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 45 ms
6,940 KB
testcase_06 AC 119 ms
7,040 KB
testcase_07 AC 97 ms
6,944 KB
testcase_08 AC 88 ms
6,940 KB
testcase_09 AC 75 ms
6,944 KB
testcase_10 AC 108 ms
6,944 KB
testcase_11 AC 141 ms
7,296 KB
testcase_12 AC 30 ms
6,940 KB
testcase_13 AC 137 ms
7,808 KB
testcase_14 AC 127 ms
7,552 KB
testcase_15 AC 30 ms
6,940 KB
testcase_16 AC 71 ms
6,940 KB
testcase_17 AC 88 ms
6,944 KB
testcase_18 AC 28 ms
6,940 KB
testcase_19 AC 140 ms
7,680 KB
testcase_20 AC 110 ms
6,944 KB
testcase_21 AC 53 ms
6,944 KB
testcase_22 AC 112 ms
6,944 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 92 ms
6,944 KB
testcase_25 AC 96 ms
6,944 KB
testcase_26 AC 108 ms
6,944 KB
testcase_27 AC 113 ms
6,944 KB
testcase_28 AC 62 ms
6,944 KB
testcase_29 AC 91 ms
6,944 KB
testcase_30 AC 122 ms
6,944 KB
testcase_31 AC 53 ms
6,940 KB
testcase_32 AC 81 ms
6,940 KB
testcase_33 AC 34 ms
6,944 KB
testcase_34 AC 15 ms
6,940 KB
testcase_35 AC 83 ms
6,940 KB
testcase_36 AC 81 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 143 ms
6,944 KB
testcase_39 AC 155 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace std;

using ll = long long;

struct smart_sieve{
	int n;
	vector<int> f;
	// 初期構築 : (nloglog(n))
	smart_sieve(int x = 1) :n(x), f(x+1, -1){
        for(ll i = 2; i <= n; i++){
            if(f[i] != -1)continue;
            for(ll j = i*i; j <= n; j += i){
                f[j] = (f[j] == -1 ? i : f[j]);
            }
            f[i] = i;
        }
	}
	// 素数判定 : O(1)
	bool isPrime(int x){return f[x] == x;}
	// 素因数分解 : O(log(n))
	vector<pair<ll,ll>> prime_factor(int x){
        if(x == 1)return {};
        vector<pair<ll, ll>> ret;
        ret.emplace_back(f[x], 1); x /= f[x];
		while(x != 1){
            if(f[x] == ret.back().first){
                ret.back().second++;
            }else{
                ret.emplace_back(f[x], 1);
            }
            x /= f[x];
        }
        return ret;
	}
};

int main(){
    int n;
    cin >> n;
    vector<int> a(n);
    for(int i = 0; i < n; i++)cin >> a[i];

    set<int> pf;
    smart_sieve ss(200000);
    for(int i = 0; i < n; i++){
        vector<pair<ll, ll>> p;
        p = ss.prime_factor(a[i]);
        for(auto x : p)pf.insert(x.first);
    }
    
    int cnt = 0, mn = 1e9+7;
    vector<int> pos(200000, -1);
    for(auto it = pf.begin(); it != pf.end(); it++){
        mn = (mn == 1e9+7 ? (*it) : mn); pos[*it] = cnt++;
    }

    atcoder::dsu uf(n+cnt);
    for(int i = 0; i < n; i++){
        vector<pair<ll, ll>> p;
        p = ss.prime_factor(a[i]);
        for(auto x : p)uf.merge(i, n+pos[x.first]);
    }

    set<int> st;
    for(int i = 0; i < n; i++)st.insert(uf.leader(i));
    int ans = 1e9+7, S = st.size();
    if(pos[2] == -1){
        ans = min(2*S, mn * (S-1));
    }else{
        ans = 2 * (S-1);
    }
	
    cout << ans << endl;
}
0