#include<bits/stdc++.h>
#define taskname "a"
using namespace std;
void World_Final();
void Solve();
int main(){
ios_base::sync_with_stdio(false); cin.tie(nullptr);
if (fopen(taskname".in", "r")) {
freopen(taskname".in", "r", stdin);
freopen(taskname".out", "w", stdout);
}
World_Final();
}
void World_Final(){
int Tests = 1;
//cin >> Tests;
for (int i = 1; i <= Tests; i ++) {
//cout << i << "\n";
Solve();
}
}
struct DSU{
private:
vector<int> par, sz;
public:
int ccp;
DSU(int N) : par(N + 5), sz(N + 5) {
ccp = N;
for (int i = 1; i <= N; i ++) {
par[i] = i;
sz[i] = 1;
}
}
/*void init(int N) {
par.resize(N + 5); sz.resize(N + 5);
for (int i = 1; i <= N; i ++) {
par[i] = i; sz[i] = 1;
}
}*/
int findPar(int u) {
return (u == par[u] ? u : par[u] = findPar(par[u]));
}
//int getSize(int u) { return sz[findPar(u)]; }
bool same(int u, int v) {
return findPar(u) == findPar(v);
}
bool unite(int u, int v) {
int paru = findPar(u);
int parv = findPar(v);
if (paru == parv) return false;
if (sz[paru] < sz[parv]) swap(paru, parv);
sz[paru] += sz[parv];
par[parv] = paru;
return true;
}
};
const int MAXN = 1e5 + 10;
const int64_t INF = 1e18;
struct Edge{
int u, v, c;
};
void Solve(){
int N; cin >> N;
vector<Edge> ve;
int mx = 1e7 + 10;
vector<int> P(N), pos(mx, -1);
for (auto &x : P) cin >> x;
sort (P.begin(), P.end());
for (int i = 0; i < N; i ++) {
/*pos[P[i]] = i;
if (i) {
ve.push_back({i, i - 1, min(P[i] % P[i - 1], P[i - 1])});
ve.push_back({i, 0, min(P[i] % P[0], P[0])});
}
for (int j = 1; j * j <= P[i]; j ++) {
if (P[i] % j == 0) {
if (pos[j] >= 0) {
ve.push_back({i, pos[j], 0});
if (P[i]/j != j) {
if (pos[P[i]/j] >= 0) {
ve.push_back({i, pos[P[i]/j], 0});
}
}
}
}
}*/
for (int j = i - 1; j >= 0; j --) {
ve.push_back({i, j, min(P[j], P[i] % P[j])});
}
} sort (ve.begin(), ve.end(), [&] (Edge &a, Edge &b){
return a.c < b.c;
});
int64_t ans = 0; DSU d(N);
for (auto [u, v, c] : ve) {
if (d.unite(u, v)) {
ans += c;
}
} cout << ans;
}
Compilation message
sirni.cpp: In function 'int main()':
sirni.cpp:11:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | freopen(taskname".in", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
sirni.cpp:12:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | freopen(taskname".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
41 ms |
46284 KB |
Output is correct |
2 |
Correct |
38 ms |
46796 KB |
Output is correct |
3 |
Correct |
48 ms |
47820 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
47560 KB |
Output is correct |
2 |
Correct |
30 ms |
47056 KB |
Output is correct |
3 |
Correct |
44 ms |
46028 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
46028 KB |
Output is correct |
2 |
Correct |
36 ms |
46588 KB |
Output is correct |
3 |
Correct |
47 ms |
46032 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
648 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
535 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
550 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
543 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
564 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
545 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
539 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |