結果

問題 No.1917 LCMST
ユーザー rabimearabimea
提出日時 2023-01-27 01:39:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,385 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 211,732 KB
実行使用メモリ 180,624 KB
最終ジャッジ日時 2024-06-27 15:28:25
合計ジャッジ時間 119,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,244 ms
145,152 KB
testcase_01 AC 2,263 ms
145,024 KB
testcase_02 AC 2,257 ms
145,152 KB
testcase_03 AC 2,226 ms
145,772 KB
testcase_04 AC 2,228 ms
145,780 KB
testcase_05 AC 2,286 ms
145,904 KB
testcase_06 AC 2,259 ms
145,792 KB
testcase_07 AC 2,272 ms
145,776 KB
testcase_08 AC 2,222 ms
145,024 KB
testcase_09 AC 2,685 ms
180,340 KB
testcase_10 AC 2,607 ms
180,200 KB
testcase_11 AC 2,587 ms
180,392 KB
testcase_12 AC 2,516 ms
166,212 KB
testcase_13 WA -
testcase_14 AC 2,628 ms
179,852 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2,419 ms
149,984 KB
testcase_20 AC 2,421 ms
148,140 KB
testcase_21 AC 2,504 ms
150,236 KB
testcase_22 AC 2,566 ms
148,260 KB
testcase_23 AC 2,462 ms
148,256 KB
testcase_24 AC 2,451 ms
150,048 KB
testcase_25 AC 2,389 ms
148,292 KB
testcase_26 AC 2,395 ms
148,948 KB
testcase_27 AC 2,511 ms
149,304 KB
testcase_28 AC 2,351 ms
149,632 KB
testcase_29 AC 2,496 ms
180,488 KB
testcase_30 AC 2,626 ms
180,600 KB
testcase_31 AC 2,507 ms
180,352 KB
testcase_32 AC 2,584 ms
180,452 KB
testcase_33 AC 2,539 ms
180,612 KB
testcase_34 AC 2,331 ms
145,024 KB
testcase_35 AC 2,309 ms
145,024 KB
testcase_36 AC 2,313 ms
145,024 KB
testcase_37 AC 2,650 ms
180,608 KB
testcase_38 AC 2,556 ms
180,472 KB
testcase_39 AC 2,598 ms
180,464 KB
testcase_40 AC 2,667 ms
180,616 KB
testcase_41 AC 2,697 ms
180,608 KB
testcase_42 AC 2,608 ms
180,624 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
#define fi first
#define se second
#define pb push_back
using vi = vector <int>;
using ll = long long;
using pii = pair <int, int>;
//~ const ll mod = 998244353;
const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

const int N = 1e6 + 11;
vi divs[N];
vi muls[N];

int a[N];

int p[N];
int find(int x) {
	if(p[x] == x) return x;
	return p[x] = find(p[x]);
}

struct edge {
	int u, v;
	ll w;
	bool operator <(const edge &e) const {
		return w < e.w;
	}
};

ll lcm(ll a, ll b) {
	return a / __gcd(a, b) * b;
}

int main() {
	ios :: sync_with_stdio(false);
	
	int n, m; cin >> n;
	
	ll ans = 0;
	for(int i = 1; i <= n; i ++) {
		int x; cin >> x;
		if(a[x]) ans += x;
		a[x] = 1;
	}
	
	for(int i = 1; i < N; i ++)
		for(int j = i; j < N; j += i) {
			divs[j].pb(i);
			if(a[j]) muls[i].pb(j);
		}
	for(int i = 1; i < N; i ++)
		sort(muls[i].begin(), muls[i].end());
	
	vector <edge> edges;
	for(int i = 1; i < N; i ++) if(a[i]) {
		for(int x : divs[i]) {
			if(muls[x].size())
				edges.pb({i, muls[x][0], lcm(i, muls[x][0])});
		}
	}
	
	sort(edges.begin(), edges.end());
	
	iota(p, p + N, 0);
	for(auto e : edges) {
		int u = e.u, v = e.v;
		u = find(u); v = find(v);
		if(u != v) {
			ans += e.w;
			p[u] = v;
		}
	}
	
	cout << ans << '\n';
}
0