# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
490221 | 2021-11-26T11:55:53 Z | BeanZ | Sirni (COCI17_sirni) | C++14 | 421 ms | 284892 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long #define ld long double #define endl '\n' const int N = 1e7 + 5; const int mod = 1e9 + 7; const int mod2 = 998244353; const long long lim = 1e7; const int lg = 18; const int base = 311; const int base2 = 511; const long double eps = 1e-6; ll ans = 0; ll p[N], a[N], oke[N], nx[N]; struct viet{ ll u, v, c; }; bool cmp(viet x, viet y){ return x.c < y.c; } ll find_set(ll u){ if (p[u] < 0) return u; return p[u] = find_set(p[u]); } void dsu(ll u, ll v, ll c){ //cout << u << " " << v << " " << c << endl; u = find_set(u); v = find_set(v); if (u == v) return; if (p[u] > p[v]) swap(u, v); p[u] += p[v]; p[v] = u; ans += c; } signed main(){ ios_base::sync_with_stdio(false); cin.tie(0); if (fopen("tests.inp", "r")){ freopen("test.inp", "r", stdin); freopen("test.out", "w", stdout); } ll n; cin >> n; memset(p, -1, sizeof(p)); for (int i = 1; i <= n; i++){ cin >> a[i]; oke[a[i]] = 1; } ll last = 0; for (int i = lim; i >= 1; i--){ if (oke[i]) last = i; nx[i] = last; } vector<viet> E; for (int i = 1; i <= lim; i++){ if (oke[i]){ for (int j = i; j <= lim; j += i){ if (nx[j] == 0) break; if ((j + i) <= nx[j]) continue; E.push_back({i, nx[j], nx[j] - j}); } } } sort(E.begin(), E.end(), cmp); for (auto j : E){ dsu(j.u, j.v, j.c); } cout << ans; } /* cbc Ans: Out: */
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 76 ms | 160924 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 74 ms | 157380 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 77 ms | 161196 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 267 ms | 190380 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 123 ms | 171224 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 421 ms | 264192 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 121 ms | 171300 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 313 ms | 284728 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 318 ms | 284892 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 120 ms | 213556 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |