#include "bits/stdc++.h"
using namespace std;
#ifdef duc_debug
#include "bits/debug.h"
#else
#define debug(...)
#endif
const int maxn = 2e5 + 5;
const int N = 1e7 + 15;
int n;
vector<int> value[N];
int lab[maxn];
int nxt[N];
int find(int u) {
return lab[u] < 0 ? u : lab[u] = find(lab[u]);
}
bool is_joined(int u, int v) {
u = find(u), v = find(v);
if(u == v) return 1;
if(lab[u] > lab[v]) swap(u, v);
lab[u] += lab[v];
lab[v] = u;
return 0;
}
struct edge {
int u, v, w;
bool operator<(const edge &o) {
return (w != o.w ? w < o.w : u < o.u);
}
};
vector<edge> e;
void solve() {
cin >> n;
vector<int> a;
for(int i = 1; i <= n; ++i) {
int x; cin >> x;
a.push_back(x);
lab[i] = -1;
value[x].push_back(i);
nxt[x] = x;
}
sort(a.begin(), a.end());
a.erase(unique(a.begin(), a.end()), a.end());
for(int i = a.back() - 1; i >= 0; --i) {
if(!nxt[i])
nxt[i] = nxt[i + 1];
else {
for(int j = 1; j < (int)value[i].size(); ++j) {
is_joined(value[i][0], value[i][j]);
}
}
}
for(int i = 0; i < (int)a.size() - 1; ++i) {
if(value[a[i]].size() and value[a[i - 1]].size())
e.push_back({value[a[i]][0], value[a[i + 1]][0], a[i + 1] % a[i]});
if(value[a[i]].empty()) continue;
for(int j = a[i] * 2; j <= a.back(); j += a[i]) {
int val = nxt[j];
if(value[val].empty()) continue;
int pos = value[val][0];
if(pos != value[a[i]][0])
e.push_back({value[a[i]][0], pos, (val % a[i])});
}
}
sort(e.begin(), e.end());
long long ans = 0;
for(auto i:e) {
if(!is_joined(i.u, i.v)) {
ans += i.w;
}
}
cout << ans;
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
solve();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
129 ms |
274512 KB |
Output is correct |
2 |
Incorrect |
314 ms |
323472 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
103 ms |
235524 KB |
Output is correct |
2 |
Runtime error |
758 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
122 ms |
274512 KB |
Output is correct |
2 |
Correct |
120 ms |
274548 KB |
Output is correct |
3 |
Correct |
122 ms |
274584 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
242 ms |
268344 KB |
Output is correct |
2 |
Correct |
558 ms |
292616 KB |
Output is correct |
3 |
Correct |
351 ms |
292360 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
120 ms |
242884 KB |
Output is correct |
2 |
Correct |
421 ms |
290816 KB |
Output is correct |
3 |
Correct |
243 ms |
265788 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
383 ms |
292940 KB |
Output is correct |
2 |
Correct |
723 ms |
342220 KB |
Output is correct |
3 |
Correct |
306 ms |
268336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
142 ms |
243836 KB |
Output is correct |
2 |
Correct |
774 ms |
341456 KB |
Output is correct |
3 |
Correct |
302 ms |
268088 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
340 ms |
303912 KB |
Output is correct |
2 |
Runtime error |
991 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
468 ms |
304032 KB |
Output is correct |
2 |
Runtime error |
928 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
159 ms |
278472 KB |
Output is correct |
2 |
Runtime error |
1018 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |