結果

問題 No.2756 GCD Teleporter
ユーザー cho435cho435
提出日時 2024-05-11 17:25:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 919 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 4,877 ms
コンパイル使用メモリ 277,788 KB
実行使用メモリ 10,360 KB
最終ジャッジ日時 2024-05-11 17:25:19
合計ジャッジ時間 15,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 20 ms
6,940 KB
testcase_05 AC 89 ms
6,940 KB
testcase_06 AC 254 ms
9,192 KB
testcase_07 AC 184 ms
8,192 KB
testcase_08 AC 167 ms
7,808 KB
testcase_09 AC 140 ms
7,168 KB
testcase_10 AC 205 ms
8,648 KB
testcase_11 AC 294 ms
9,928 KB
testcase_12 AC 62 ms
6,940 KB
testcase_13 AC 320 ms
10,240 KB
testcase_14 AC 294 ms
9,852 KB
testcase_15 AC 66 ms
6,944 KB
testcase_16 AC 164 ms
7,424 KB
testcase_17 AC 217 ms
8,192 KB
testcase_18 AC 60 ms
6,944 KB
testcase_19 AC 314 ms
10,240 KB
testcase_20 AC 540 ms
8,296 KB
testcase_21 AC 235 ms
6,940 KB
testcase_22 AC 366 ms
8,568 KB
testcase_23 AC 65 ms
6,940 KB
testcase_24 AC 421 ms
7,380 KB
testcase_25 AC 472 ms
7,800 KB
testcase_26 AC 411 ms
8,404 KB
testcase_27 AC 343 ms
8,584 KB
testcase_28 AC 163 ms
6,944 KB
testcase_29 AC 264 ms
7,680 KB
testcase_30 AC 312 ms
8,704 KB
testcase_31 AC 131 ms
6,944 KB
testcase_32 AC 919 ms
7,244 KB
testcase_33 AC 339 ms
6,944 KB
testcase_34 AC 53 ms
6,944 KB
testcase_35 AC 376 ms
7,508 KB
testcase_36 AC 265 ms
7,592 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 123 ms
8,168 KB
testcase_39 AC 130 ms
10,360 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<<min((ll)2*st.size(),mn*(st.size()-1))<<endl;
}
0