#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;
const ll N = 2000001;
const ll INF = 1e18, MOD = 1e9 + 7, MOD2 = 1e6 + 3;
const int maxa = (int)1e7 + 1;
int a[N], n;
int p[N], sz[N], e[maxa + 1], u[maxa + 1];
vector<pair<int, int>> v[maxa + 1];
int f(int i, int j) {
return a[j] % a[i];
}
int find(int x) {
if (p[x] == x) return x;
return p[x] = find(p[x]);
}
bool unite(int a, int b) {
a = find(a), b = find(b);
if (a == b) return false;
if (sz[a] < sz[b]) swap(a, b);
sz[a] += sz[b];
p[b] = a;
return true;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
fill(e, e + maxa + 1, -1);
for (int i = 0; i < n; i++) {
sz[i] = 1, p[i] = i;
}
for (int i = 0; i < n; i++) {
cin >> a[i];
e[a[i]] = i;
}
for (int i = maxa - 1; i >= 0; i--) {
if (e[i] == -1) e[i] = e[i+1];
}
for (int i = 0; i < n; i++) {
if (e[a[i]] != i) {
v[0].push_back({i, e[a[i]]});
continue;
}
if (u[a[i]]) {
v[f(u[a[i]], i)].push_back({u[a[i]], i});
continue;
}
if (e[a[i] + 1] != -1) v[f(i, e[a[i] + 1])].push_back({i, e[a[i] + 1]});
for (int k = 2 * a[i]; k < maxa; k += a[i]) {
u[k] = i;
if (e[k] != -1 && a[e[k]] <= k + a[i]) {
v[a[e[k]] - k].push_back({i, e[k]});
}
}
}
ll ans = 0;
for (int i = 0; i <= maxa; i++) {
for (auto& x : v[i]) {
if (unite(x.first, x.second)) {
ans += i;
//cout << a[x.first] << ' ' << a[x.second] << ' ' << f(x.first, x.second) << endl;
}
}
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
239 ms |
288748 KB |
Output is correct |
2 |
Correct |
320 ms |
316268 KB |
Output is correct |
3 |
Correct |
251 ms |
310764 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
347 ms |
313708 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
245 ms |
289496 KB |
Output is correct |
2 |
Correct |
231 ms |
280172 KB |
Output is correct |
3 |
Correct |
246 ms |
299628 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
531 ms |
322868 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
299 ms |
315304 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
761 ms |
330276 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
543 ms |
316628 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
433 ms |
326632 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
424 ms |
325472 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
284 ms |
315884 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |