# include <bits/stdc++.h>
#define _USE_MATH_DEFINES_
#define ll long long
#define ld long double
#define Accepted 0
#define pb push_back
#define mp make_pair
#define sz(x) (int)(x.size())
#define every(x) x.begin(),x.end()
#define F first
#define S second
#define For(i,x,y) for (ll i = x; i <= y; i ++)
#define FOr(i,x,y) for (ll i = x; i >= y; i --)
#define SpeedForce ios_base::sync_with_stdio(0), cin.tie(0)
// ROAD to... Red
using namespace std;
inline bool isvowel (char c) {
c = tolower(c);
if (c == 'a' || c == 'e' || c == 'i' || c == 'y' || c == 'o' || c == 'u') return 1;
return 0;
}
const double eps = 0.000001;
const ld pi = acos(-1);
const int maxn = 1e7 + 3;
const int mod = 1e9 + 7;
const ll MOD = 1e18 + 9;
const ll INF = 1e18 + 123;
const int inf = 2e9 + 11;
const int mxn = 1e6 + 9;
const int N = 1e5 + 123;
const int M = 22;
const int pri = 997;
const int Magic = 2101;
const int dx[] = {-1, 0, 1, 0};
const int dy[] = {0, -1, 0, 1};
int n;
int sz[N];
int p[N];
int a[N];
int R[maxn + 5];
int id[maxn + 5];
int ans = 0;
int u[N];
vector < pair < int, int > > g[maxn];
int get (int v) {
if (p[v] == v) {
return v;
}
return p[v] = get(p[v]);
}
bool uni (int u, int v) {
u = get(u), v = get(v);
if (u == v) return 0;
if (sz[u] > sz[v]) swap(u, v);
p[u] = v;
if (sz[v] == sz[u]) sz[v] ++;
return 1;
}
int main () {
SpeedForce;
cin >> n;
For (i, 1, n) {
cin >> a[i];
}
For (i, 1, n) {
if (id[a[i]]) continue;
p[i] = i;
sz[i] = 1;
R[a[i]] = a[i];
id[a[i]] = i;
}
for (int j = maxn - 2; j >= 0; j --) {
if (!R[j])
R[j] = R[j + 1];
}
For (i, 1, n) {
if (!R[a[i]]) continue;
if (a[i] * 2 >= maxn - 1 || R[a[i] + 1] != R[a[i] * 2]) {
g[R[a[i] + 1] % a[i]].pb(mp(i, id[R[a[i] + 1]]));
}
for (int j = a[i]; j < maxn && R[j]; j += a[i]) {
if (j + a[i] > maxn || R[j] != R[j + a[i]]) {
g[R[j] % a[i]].pb(mp(i, id[R[j]]));
}
}
}
for (int i = 0; i < maxn; i ++) {
if (g[i].empty()) continue;
for (auto it : g[i]) {
if (uni (it.F, it.S)) {
ans += i;
}
}
}
cout << ans;
return Accepted;
}
// Coded By OB
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
345 ms |
278256 KB |
Output is correct |
2 |
Incorrect |
406 ms |
279756 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
321 ms |
279756 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
323 ms |
279756 KB |
Output is correct |
2 |
Incorrect |
322 ms |
279756 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
422 ms |
291116 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
345 ms |
291116 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
531 ms |
306400 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
349 ms |
306400 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
626 ms |
327916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
618 ms |
328292 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
400 ms |
328292 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |