답안 #1004570

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1004570 2024-06-21T09:55:32 Z Nelt Sirni (COCI17_sirni) C++17
56 / 140
484 ms 266824 KB
#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 = 5e6 + 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)];
    }
};
vector<pair<ll, ll>> e[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;
    }
    Dsu dsu(n);
    for (ll i = 0; i < n - 1; i++) if (f(p[i], p[i + 1]) < MAX) e[f(p[i], p[i + 1])].push_back(make_pair(i, i + 1));
	for (ll i = 0; i < n; i++)
        for (ll w = p[i], pos; w <= p[n - 1]; w += p[i]) 
    {
        pos = lower_bound(p, p + n, w) - p;
        if (pos < n and p[pos] < w + p[i] and p[pos] - w < MAX) e[p[pos] - w].push_back(make_pair(pos, i));
    }
    // 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));
    for (ll i = 0; i <= p[n - 1]; i++) for (auto [a, b] : e[i]) ans += dsu.Union(a, b) * i;
    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 Runtime error 131 ms 238860 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 48 ms 117852 KB Output is correct
2 Runtime error 484 ms 239952 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 134 ms 238932 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 150 ms 129196 KB Output is correct
2 Correct 364 ms 154840 KB Output is correct
3 Correct 188 ms 133352 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 62 ms 119888 KB Output is correct
2 Correct 132 ms 140240 KB Output is correct
3 Correct 151 ms 129088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 240 ms 141484 KB Output is correct
2 Correct 471 ms 168856 KB Output is correct
3 Correct 171 ms 131044 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 80 ms 121756 KB Output is correct
2 Correct 380 ms 164352 KB Output is correct
3 Correct 172 ms 131400 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 271 ms 265704 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 287 ms 266824 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 156 ms 243652 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -