結果

問題 No.1917 LCMST
ユーザー rabimearabimea
提出日時 2023-01-27 01:58:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 441 ms / 4,000 ms
コード長 1,423 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 211,424 KB
実行使用メモリ 73,788 KB
最終ジャッジ日時 2024-06-27 15:40:24
合計ジャッジ時間 16,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
16,896 KB
testcase_01 AC 58 ms
16,896 KB
testcase_02 AC 56 ms
17,024 KB
testcase_03 AC 60 ms
17,940 KB
testcase_04 AC 65 ms
18,000 KB
testcase_05 AC 63 ms
17,996 KB
testcase_06 AC 67 ms
17,928 KB
testcase_07 AC 62 ms
17,940 KB
testcase_08 AC 58 ms
16,896 KB
testcase_09 AC 441 ms
73,512 KB
testcase_10 AC 436 ms
73,640 KB
testcase_11 AC 440 ms
73,560 KB
testcase_12 AC 384 ms
48,036 KB
testcase_13 AC 254 ms
32,120 KB
testcase_14 AC 426 ms
73,024 KB
testcase_15 AC 207 ms
24,408 KB
testcase_16 AC 261 ms
32,308 KB
testcase_17 AC 315 ms
46,052 KB
testcase_18 AC 338 ms
46,612 KB
testcase_19 AC 209 ms
24,316 KB
testcase_20 AC 182 ms
21,096 KB
testcase_21 AC 211 ms
24,360 KB
testcase_22 AC 181 ms
21,100 KB
testcase_23 AC 184 ms
21,096 KB
testcase_24 AC 211 ms
24,272 KB
testcase_25 AC 185 ms
21,284 KB
testcase_26 AC 193 ms
23,820 KB
testcase_27 AC 195 ms
24,084 KB
testcase_28 AC 201 ms
24,076 KB
testcase_29 AC 353 ms
73,664 KB
testcase_30 AC 368 ms
73,660 KB
testcase_31 AC 371 ms
73,668 KB
testcase_32 AC 405 ms
73,752 KB
testcase_33 AC 366 ms
73,788 KB
testcase_34 AC 148 ms
16,896 KB
testcase_35 AC 144 ms
16,896 KB
testcase_36 AC 146 ms
16,896 KB
testcase_37 AC 400 ms
73,784 KB
testcase_38 AC 402 ms
73,772 KB
testcase_39 AC 390 ms
73,784 KB
testcase_40 AC 396 ms
73,772 KB
testcase_41 AC 398 ms
73,652 KB
testcase_42 AC 416 ms
73,780 KB
testcase_43 AC 154 ms
17,680 KB
testcase_44 AC 153 ms
17,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:41:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   41 | main() {
      | ^~~~

ソースコード

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; }

#define int long long

const int N = 1e5 + 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;
}

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 ++)
		if(muls[i].size()) 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