이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5 + 4;
int p[maxn];
int pa[maxn];
int find(int x) { return pa[x] == x ? x : pa[x] = find(pa[x]); }
struct Edge {
int u, v, w;
bool operator<(const Edge &e) const { return w < e.w; }
};
int main() {
ios::sync_with_stdio(false), cin.tie(0);
vector<Edge> es;
int n;
cin >> n;
for (int i = 1; i <= n; ++i) cin >> p[i];
sort(p + 1, p + n + 1);
n = unique(p + 1, p + n + 1) - p - 1;
for (int i = 1; i <= n; ++i) pa[i] = i;
long long ans = 0;
for (int i = 1; i <= n; ++i) {
int x = p[i];
for (int y = x; y <= p[n]; y += x) {
int k = lower_bound(p + i + 1, p + n + 1, y) - p;
if (k <= n && p[k] / x == y / x) es.push_back(Edge{i, k, p[k] % p[i]});
}
}
sort(es.begin(), es.end());
for (auto e : es) {
int u = find(e.u), v = find(e.v);
if (u != v) ans += e.w, pa[u] = v;
}
cout << ans << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |