結果

問題 No.2756 GCD Teleporter
ユーザー cho435cho435
提出日時 2024-05-11 17:16:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 833 bytes
コンパイル時間 4,761 ms
コンパイル使用メモリ 276,772 KB
実行使用メモリ 10,356 KB
最終ジャッジ日時 2024-12-20 08:39:28
合計ジャッジ時間 15,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 21 ms
6,816 KB
testcase_05 AC 88 ms
6,820 KB
testcase_06 AC 256 ms
9,068 KB
testcase_07 AC 206 ms
8,192 KB
testcase_08 AC 186 ms
7,680 KB
testcase_09 AC 160 ms
7,168 KB
testcase_10 AC 228 ms
8,520 KB
testcase_11 AC 305 ms
9,796 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 589 ms
8,300 KB
testcase_21 AC 264 ms
6,816 KB
testcase_22 AC 374 ms
8,568 KB
testcase_23 AC 71 ms
6,820 KB
testcase_24 AC 466 ms
7,508 KB
testcase_25 AC 496 ms
7,672 KB
testcase_26 AC 453 ms
8,276 KB
testcase_27 AC 376 ms
8,588 KB
testcase_28 AC 176 ms
6,816 KB
testcase_29 AC 263 ms
7,552 KB
testcase_30 AC 347 ms
8,832 KB
testcase_31 AC 146 ms
6,820 KB
testcase_32 AC 970 ms
7,120 KB
testcase_33 AC 372 ms
6,816 KB
testcase_34 AC 59 ms
6,820 KB
testcase_35 AC 411 ms
7,512 KB
testcase_36 AC 262 ms
7,588 KB
testcase_37 WA -
testcase_38 AC 133 ms
8,036 KB
testcase_39 AC 149 ms
10,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;

template<class T>
void chmin(T &a,T b){
	if(a>b) a=b;
}

int main(){
	int n;
	cin>>n;
	vector<int> a(n);
	rep(i,n) cin>>a.at(i);
	map<ll,vector<int>> mp;
	rep(i,n){
		int tmp=a.at(i);
		for(ll j=2;j*j<=tmp;j++){
			if(tmp%j==0){
				mp[j].push_back(i);
				while(tmp%j==0) tmp/=j;
			}
		}
		if(tmp>1) mp[tmp].push_back(i);
	}
	atcoder::dsu uf(n);
	for(auto&[x,v]:mp){
		for(auto&y:v){
			uf.merge(v.at(0),y);
		}
	}
	vector<ll> sc(n,1e18);
	for(auto&[x,v]:mp){
		for(auto&y:v){
			chmin(sc.at(uf.leader(y)),x);
		}
	}
	ll mn=1e18;
	set<int> st;
	rep(i,n){
		st.insert(uf.leader(i));
		chmin(mn,sc.at(uf.leader(i)));
	}
	cout<<(ll)mn*(st.size()-1)<<endl;
}
0