結果

問題 No.2756 GCD Teleporter
ユーザー shobonvipshobonvip
提出日時 2024-05-10 21:50:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 2,154 bytes
コンパイル時間 4,752 ms
コンパイル使用メモリ 273,028 KB
実行使用メモリ 18,544 KB
最終ジャッジ日時 2024-12-20 05:08:10
合計ジャッジ時間 8,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
17,320 KB
testcase_01 AC 47 ms
17,344 KB
testcase_02 AC 46 ms
17,288 KB
testcase_03 AC 45 ms
17,388 KB
testcase_04 AC 54 ms
17,408 KB
testcase_05 AC 59 ms
17,696 KB
testcase_06 AC 79 ms
18,144 KB
testcase_07 AC 74 ms
18,036 KB
testcase_08 AC 72 ms
18,012 KB
testcase_09 AC 65 ms
17,980 KB
testcase_10 AC 73 ms
18,108 KB
testcase_11 AC 84 ms
18,236 KB
testcase_12 AC 57 ms
17,788 KB
testcase_13 AC 82 ms
18,544 KB
testcase_14 AC 80 ms
18,464 KB
testcase_15 AC 51 ms
17,644 KB
testcase_16 AC 62 ms
18,072 KB
testcase_17 AC 65 ms
18,136 KB
testcase_18 AC 49 ms
17,680 KB
testcase_19 AC 78 ms
18,520 KB
testcase_20 AC 72 ms
18,008 KB
testcase_21 AC 54 ms
17,832 KB
testcase_22 AC 69 ms
18,028 KB
testcase_23 AC 54 ms
17,384 KB
testcase_24 AC 69 ms
17,848 KB
testcase_25 AC 68 ms
17,996 KB
testcase_26 AC 70 ms
18,060 KB
testcase_27 AC 70 ms
18,084 KB
testcase_28 AC 61 ms
17,672 KB
testcase_29 AC 69 ms
17,960 KB
testcase_30 AC 75 ms
18,056 KB
testcase_31 AC 62 ms
17,672 KB
testcase_32 AC 69 ms
18,120 KB
testcase_33 AC 52 ms
17,588 KB
testcase_34 AC 53 ms
17,404 KB
testcase_35 AC 68 ms
18,080 KB
testcase_36 AC 63 ms
18,148 KB
testcase_37 AC 44 ms
17,476 KB
testcase_38 AC 68 ms
18,156 KB
testcase_39 AC 70 ms
18,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	int n; cin >> n;
	vector<int> a(n);
	rep(i,0,n){
		cin >> a[i];
	}

	dsu uf(600000);
	int geta = 300000;

	vector<vector<int>> d(214159, vector<int>(0));
	vector<bool> pl(214159, false);
	for (int i=2; i<=211000; i++){
		if (pl[i]) continue;
		for (int j=i; j<=211000; j+=i){
			pl[j] = 1;
			d[j].push_back(i);
		}
	}

	vector<bool> used(300000);
	rep(i,0,n){
		for (int p: d[a[i]]){
			uf.merge(i, geta + p);
		}
	}

	ll onecnt = 0;
	rep(i,0,n){
		if (a[i] == 1){
			onecnt++;
		}
	}

	map<int,int> mp;
	int minuse = 998244;
	rep(i,0,300000){
		if (uf.size(geta + i) == 1) continue;
		if (mp.find(uf.leader(geta + i)) == mp.end()){
			mp[uf.leader(geta + i)] = 998244;
		}
		chmin(mp[uf.leader(geta + i)], i);
		chmin(minuse, i);
	}

	ll ans = (ll)n * 2;
	if (uf.size(geta + 2) != 1){
		chmin(ans, 2 * onecnt + 2 * ((ll)mp.size() - 1));
	}else{
		if (minuse == 998244){
			chmin(ans, (ll)n * 2);
		}else{
			chmin(ans, minuse * onecnt + minuse * ((ll)mp.size() - 1));
			chmin(ans, 2 * onecnt + 2 * (ll)mp.size());
		}
	}

	cout << ans << '\n';
}

0