結果

問題 No.2756 GCD Teleporter
ユーザー otoshigootoshigo
提出日時 2024-05-11 19:29:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 2,187 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 210,444 KB
実行使用メモリ 15,336 KB
最終ジャッジ日時 2024-05-11 19:29:27
合計ジャッジ時間 7,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,900 KB
testcase_01 AC 6 ms
8,900 KB
testcase_02 AC 7 ms
8,900 KB
testcase_03 AC 7 ms
8,788 KB
testcase_04 AC 13 ms
9,208 KB
testcase_05 AC 34 ms
10,348 KB
testcase_06 AC 89 ms
12,824 KB
testcase_07 AC 70 ms
11,964 KB
testcase_08 AC 65 ms
11,700 KB
testcase_09 AC 56 ms
11,328 KB
testcase_10 AC 79 ms
12,500 KB
testcase_11 AC 110 ms
13,364 KB
testcase_12 AC 29 ms
9,660 KB
testcase_13 AC 117 ms
13,168 KB
testcase_14 AC 105 ms
13,064 KB
testcase_15 AC 28 ms
9,848 KB
testcase_16 AC 61 ms
11,256 KB
testcase_17 AC 72 ms
11,680 KB
testcase_18 AC 25 ms
9,672 KB
testcase_19 AC 119 ms
13,360 KB
testcase_20 AC 186 ms
12,668 KB
testcase_21 AC 90 ms
10,584 KB
testcase_22 AC 121 ms
12,744 KB
testcase_23 AC 28 ms
9,372 KB
testcase_24 AC 163 ms
11,980 KB
testcase_25 AC 170 ms
12,224 KB
testcase_26 AC 148 ms
12,636 KB
testcase_27 AC 123 ms
12,904 KB
testcase_28 AC 59 ms
11,036 KB
testcase_29 AC 88 ms
12,116 KB
testcase_30 AC 111 ms
13,116 KB
testcase_31 AC 50 ms
10,712 KB
testcase_32 AC 307 ms
12,200 KB
testcase_33 AC 130 ms
10,192 KB
testcase_34 AC 25 ms
9,380 KB
testcase_35 AC 140 ms
12,488 KB
testcase_36 AC 95 ms
12,492 KB
testcase_37 AC 6 ms
8,856 KB
testcase_38 AC 54 ms
13,020 KB
testcase_39 AC 58 ms
15,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

struct union_find {
public:
    explicit union_find() {}
    explicit union_find(int N) : n(N), par(N, -1), siz(N, 1) {}
    int find(int x) {
        assert(0 <= x && x < n);
        if (par[x] == -1) return x;
        par[x] = find(par[x]);
        return par[x];
    }
    int same(int x, int y) {
        assert(0 <= x && x < n);
        assert(0 <= y && y < n);
        return find(x) == find(y);
    }
    int size(int x) {
        assert(0 <= x && x < n);
        return siz[find(x)];
    }
    bool unite(int x, int y) {
        assert(0 <= x && x < n);
        assert(0 <= y && y < n);
        x = find(x);
        y = find(y);
        if (x == y) return false;
        if (siz[x] < siz[y]) std::swap(x, y);
        siz[x] += siz[y];
        par[y] = x;
        return true;
    }

private:
    int n;
    std::vector<int> par, siz;
};

const int M=200'000;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
	int N;
	cin>>N;
	vector<int>A(N);
	for(int i=0;i<N;i++)cin>>A[i];
	union_find uf(N);
	vector<int>P;
	vector<bool>is_prime(M+1,true);
	is_prime[1]=false;
	for(int p=2;p<=M;p++){
		if(!is_prime[p])continue;
		P.push_back(p);
		for(int i=2*p;i<=M;i+=p){
			is_prime[i]=false;
		}
	}
	vector<vector<int>>V(M+1);
	vector<int>at(M+1,-1);
	for(int i=0;i<N;i++){
		int a=A[i];
		for(int x=2;x*x<=a;x++){
			bool ok=false;
			while(a%x==0){
				a/=x;
				ok=true;
			}
			if(ok){
				at[x]=i;
				V[x].push_back(i);
			}
		}
		if(a>1){
			at[a]=i;
			V[a].push_back(i);
		}
	}
	for(auto p:P){
		int l=V[p].size();
		for(int i=0;i<l-1;i++){
			uf.unite(V[p][i],V[p][i+1]);
		}
	}
	ll ans=1LL<<60;
	vector<bool>flag(N);
	int cnt=0;
	for(int i=0;i<N;i++){
		if(!flag[uf.find(i)]){
			flag[uf.find(i)]=true;
			cnt++;
		}
	}
	for(auto p:P){
		if(at[p]!=-1){
			chmin(ans,(ll)(cnt-1)*p);
		}else{
			chmin(ans,(ll)cnt*p);
		}
	}
	cout<<ans<<"\n";
}
0