답안 #1057734

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1057734 2024-08-14T04:30:20 Z kitetrietrie Sirni (COCI17_sirni) C++14
56 / 140
370 ms 133412 KB
#include<bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5;
const int nmax = 1e7 + 1;
using ll = long long;
int n;
vector<int> g[N];
vector<int> v;
int root[N + 5];
int nxt[nmax + 5];

struct tt{
    int x;
    int y;
    int z;
};

vector<tt> edge;

bool cmp(tt x, tt y){
    return x.z < y.z;
}

int find(int u) { return (u == root[u] ? u : root[u] = find(root[u])); }


signed main(){
    cin>>n;
    for(int i = 1 , x ; i <= n ; ++i){
        cin>>x;
        v.push_back(x);
        g[x].push_back(i);
    }
    sort(v.begin(),v.end());
    v.erase(unique(v.begin(),v.end()),v.end());
    int j = 0;
    for(int i = 1 ; i <= v.back() ; ++i){
        while(i > v[j] ) j++;
        nxt[i] = v[j];
    }


    for (int x : v) for (int y = x; y <= v.back(); y += x) {
        int p = nxt[(y==x?y+1:y)];
        if (!p) break;
        if (y + x < p) y = (p - y) / x * x + y;
        edge.push_back({x, p, p - y});
    }

    for(auto i : v) root[i] = i;

    sort(edge.begin(),edge.end(),cmp);
    ll ans = 0;
    for (tt ee : edge) {
        int u = ee.x, v = ee.y, c = ee.z;
        //cout<<u<<'.'<<v<<'.'<<c<<"\n";
        u = find(u), v = find(v);
        if (u != v) {
            root[u] = v;
            ans += 1ll*c;
        }
  }
  cout << ans;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 17 ms 51804 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 30044 KB Output is correct
2 Runtime error 17 ms 51804 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 17 ms 51800 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 107 ms 49704 KB Output is correct
2 Correct 271 ms 83496 KB Output is correct
3 Correct 125 ms 59448 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 20 ms 37324 KB Output is correct
2 Correct 183 ms 81972 KB Output is correct
3 Correct 97 ms 47412 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 190 ms 85036 KB Output is correct
2 Correct 370 ms 133412 KB Output is correct
3 Correct 121 ms 59444 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 37 ms 38788 KB Output is correct
2 Correct 345 ms 133356 KB Output is correct
3 Correct 113 ms 58676 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 17 ms 51804 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 19 ms 51800 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 23 ms 51852 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -