#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define ll int
#define endl "\n"
using namespace std;
using namespace __gnu_pbds;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
template<class T> using ordered_set = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>;
const ll N = 1e5 + 5, MAX = 1e7 + 5;
struct Dsu
{
ll n, ans;
vector<ll> dsu;
Dsu(ll sz = 1)
{
n = sz;
ans = n;
dsu.resize(n + 1, 0);
init();
}
void init()
{
for (ll i = 0; i <= n; i++)
dsu[i] = -1;
}
bool Union(ll x, ll y)
{
x = repr(x), y = repr(y);
if (x == y)
return false;
if (dsu[x] < dsu[y])
swap(x, y);
ans--;
dsu[y] += dsu[x];
dsu[x] = y;
return true;
}
ll repr(ll x)
{
if (dsu[x] < 0)
return x;
return dsu[x] = repr(dsu[x]);
}
ll query()
{
return ans;
}
ll size(ll x)
{
return -dsu[repr(x)];
}
};
ll freq[MAX], ind[MAX];
ll best[N];
ll f(ll x, ll y)
{
return min(x % y, y % x);
}
void solve()
{
ll n;
cin >> n;
ll p[n];
for (ll &i : p) cin >> i;
long long ans = 0;
{
set<ll> s;
for (ll i : p) s.insert(i);
n = 0;
for (ll i : s) p[n++] = i;
}
for (ll i = 0; i <= p[n - 1]; i++) ind[i] = -1;
for (ll i : p) freq[i]++;
for (ll i = 0; i < n; i++) ind[p[i]] = i;
for (ll i = 1; i <= p[n - 1]; i++) freq[i] += freq[i - 1];
vector<array<ll, 3>> e;
for (ll i = 0, ptr = 0; i < n; i++){
for (ll j = p[i]; j <= p[n - 1]; j += p[i])
{
ptr = lower_bound(p, p + n, j) - p;
if (ptr < n and p[ptr] < j + p[i]) e.push_back({f(p[ptr], p[i]), ptr, i});
}}
Dsu dsu(n);
for (ll i = 0; i < n - 1; i++) e.push_back({f(p[i], p[i + 1]), i, i + 1});
// for (ll i = 0; i < n; i++) for (ll j = 0; j < n; j++) e[f(p[i], p[j])].push_back(make_pair(i, j));
sort(e.begin(), e.end());
for (auto [c, a, b] : e) ans += dsu.Union(a, b) * c;
cout << ans << endl;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
ll t = 1;
// precomp();
// cin >> t;
for (ll cs = 1; cs <= t; cs++)
solve();
// cerr << "\nTime elapsed: " << clock() * 1000.0 / CLOCKS_PER_SEC << " ms\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
34 ms |
78672 KB |
Output is correct |
2 |
Correct |
87 ms |
81516 KB |
Output is correct |
3 |
Correct |
39 ms |
78672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
600 KB |
Output is correct |
2 |
Correct |
409 ms |
79528 KB |
Output is correct |
3 |
Correct |
37 ms |
78936 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
37 ms |
78772 KB |
Output is correct |
2 |
Correct |
35 ms |
78640 KB |
Output is correct |
3 |
Correct |
33 ms |
78936 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
263 ms |
38264 KB |
Output is correct |
2 |
Correct |
838 ms |
62484 KB |
Output is correct |
3 |
Correct |
298 ms |
37612 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
34 ms |
12036 KB |
Output is correct |
2 |
Correct |
374 ms |
58828 KB |
Output is correct |
3 |
Correct |
235 ms |
33584 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
519 ms |
62996 KB |
Output is correct |
2 |
Correct |
1044 ms |
112016 KB |
Output is correct |
3 |
Correct |
292 ms |
38192 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
73 ms |
10060 KB |
Output is correct |
2 |
Correct |
958 ms |
111188 KB |
Output is correct |
3 |
Correct |
294 ms |
37648 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
301 ms |
109140 KB |
Output is correct |
2 |
Execution timed out |
5039 ms |
478300 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
334 ms |
109000 KB |
Output is correct |
2 |
Execution timed out |
5045 ms |
477476 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
72 ms |
82836 KB |
Output is correct |
2 |
Execution timed out |
5068 ms |
477240 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |