#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define all(aaa) aaa.begin(), aaa.end()
const int N = 1e5 + 5, M = 1e7 + 5, INF = 1e9;
int q[N], w[M], nt[M], r_nt[M], c[M], st[N];
pair<int, int> mn[N];
bool b[M], d[M];
int findSet(int v) {
return q[v] < 0 ? v : q[v] = findSet(q[v]);
}
bool connect(int a, int b) {
a = findSet(a);
b = findSet(b);
if (a == b)
return false;
if (q[a] > q[b])
swap(a, b);
q[a] += q[b];
q[b] = a;
return true;
}
signed main() {
#ifdef HOME
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
b[x] = 1;
}
fill(w, w + M, -1);
fill(c, c + M, -1);
fill(q, q + N, -1);
vector<int> v;
int cnt = 0;
for (int i = 0; i < M; i++) {
if (b[i]) {
w[i] = cnt++;
}
}
int remain = cnt;
for (int i = 0; i < M; i++) {
if (b[i]) {
for (int j = i + i; j < M; j += i) {
if (b[j] && connect(w[i], w[j])) {
remain--;
}
d[j] = 1;
}
v.push_back(i);
}
}
for (int i = 0; i < v.size(); i++) {
for (int j = v[i]; j < M; j += v[i]) {
c[j] = i;
}
}
nt[M - 1] = INF;
for (int i = M - 2; i >= 0; i--) {
nt[i] = b[i] ? i : nt[i + 1];
}
r_nt[0] = -1;
for (int i = 1; i < M; i++) {
r_nt[i] = c[i] != -1 ? i : r_nt[i - 1];
}
ll ans = 0;
while (remain > 1) {
for (int i = 0; i < cnt; i++)
mn[i] = { INF, -1 };
for (int x : v) {
int cur_set = st[w[x]];
if (!d[x]) {
for (int i = x; i < M - 1; i += x) {
int j = nt[i + 1];
if (j < i + x) {
int oth_set = st[w[j]];
if (oth_set != cur_set) {
if (mn[cur_set].first > j - i)
mn[cur_set] = { j - i, oth_set };
if (mn[oth_set].first > j - i)
mn[oth_set] = { j - i, cur_set };
}
}
}
}
if (r_nt[x - 1] != -1) {
int bef = r_nt[x - 1], oth_set = st[c[bef]];
if (oth_set != cur_set) {
mn[cur_set] = min(mn[cur_set], { x - bef, oth_set });
mn[oth_set] = min(mn[oth_set], { x - bef, cur_set });
}
}
}
for (int i = 0; i < cnt; i++) {
if (q[i] < 0 && mn[i].second != -1 && connect(i, mn[i].second)) {
ans += mn[i].first;
remain--;
}
}
for (int i = 0; i < cnt; i++) {
st[i] = findSet(i);
}
}
cout << ans;
return 0;
}
Compilation message
sirni.cpp: In function 'int main()':
sirni.cpp:76:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < v.size(); i++) {
~~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
220 ms |
168568 KB |
Output is correct |
2 |
Correct |
517 ms |
169128 KB |
Output is correct |
3 |
Correct |
222 ms |
170360 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
560 ms |
167176 KB |
Output is correct |
2 |
Correct |
952 ms |
167544 KB |
Output is correct |
3 |
Correct |
222 ms |
170360 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
218 ms |
169100 KB |
Output is correct |
2 |
Correct |
214 ms |
163860 KB |
Output is correct |
3 |
Correct |
220 ms |
170488 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
934 ms |
169692 KB |
Output is correct |
2 |
Correct |
1759 ms |
169588 KB |
Output is correct |
3 |
Correct |
889 ms |
169588 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
366 ms |
168492 KB |
Output is correct |
2 |
Correct |
1639 ms |
168456 KB |
Output is correct |
3 |
Correct |
1415 ms |
169032 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1672 ms |
169768 KB |
Output is correct |
2 |
Correct |
1818 ms |
169764 KB |
Output is correct |
3 |
Correct |
770 ms |
169668 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1057 ms |
167908 KB |
Output is correct |
2 |
Correct |
2102 ms |
169596 KB |
Output is correct |
3 |
Correct |
829 ms |
169584 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
519 ms |
178532 KB |
Output is correct |
2 |
Correct |
1619 ms |
178804 KB |
Output is correct |
3 |
Correct |
572 ms |
178484 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
494 ms |
178704 KB |
Output is correct |
2 |
Correct |
2601 ms |
178344 KB |
Output is correct |
3 |
Correct |
506 ms |
178420 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
301 ms |
177348 KB |
Output is correct |
2 |
Correct |
3094 ms |
178288 KB |
Output is correct |
3 |
Correct |
916 ms |
169604 KB |
Output is correct |