# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
633608 |
2022-08-22T20:19:33 Z |
inksamurai |
Sirni (COCI17_sirni) |
C++17 |
|
5000 ms |
786432 KB |
#include <bits/stdc++.h>
#define int ll
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define rng(i,c,n) for(int i=c;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define vec(...) vector<__VA_ARGS__>
#define _3PGDklf ios::sync_with_stdio(0),cin.tie(0)
typedef long long ll;
using pii=pair<int,int>;
using vi=vector<int>;
void print(){cout<<'\n';}
template<class h,class...t>
void print(const h&v,const t&...u){cout<<v<<' ',print(u...);}
// e
struct dsu{
int _n;
vi si,par,leb;
dsu(int n=0){
init(n);
}
void init(int n=0){
_n=n;
par=vi(_n,0);
si=vi(_n,0);
leb=vi(_n,-1);
rep(i,n){
si[i]=1;
par[i]=i;
}
}
int parent(int u){return par[u]=(par[u]==u?u:parent(par[u]));}
bool same(int u,int v){return parent(u)==parent(v);}
void merge(int u,int v){
u=parent(u),v=parent(v);
if(!same(u,v)){
if(si[u]<si[v]) swap(u,v);
leb[u]=max(leb[u],leb[v]);
_n-=1;
si[u]+=si[v];
par[v]=u;
}
}
int size(int v=-1){return v==-1?_n:si[parent(v)];}
};
const int _n=10000100;
int nxt[_n],usd[_n];
signed main(){
_3PGDklf;
int n;
cin>>n;
vi a(n);
rep(i,n){
cin>>a[i];
}
sort(a.begin(), a.end());
a.erase(unique(a.begin(), a.end()),a.end());
if(a[0]==1){
print(0);
return 0;
}
n=sz(a);
rep(i,n){
usd[a[i]]=i+1;
}
per(i,_n-1){
if(usd[i]){
nxt[i]=usd[i];
}else{
nxt[i]=nxt[i+1];
}
}
using T=pair<int,pii>;
vec(T) es;
for(int i=2;i<_n;i++){
if(!usd[i]) continue;
for(int j=i;j<_n;j++){
int nj=j;
if(j==i){
nj++;
}
int id=nxt[nj];
if(id){
id-=1;
es.pb(T(a[id]%i,pii(usd[i]-1,id)));
}
}
}
sort(es.begin(), es.end());
dsu uf(n);
int ans=0;
for(auto&tp:es){
int u=tp.se.fi,v=tp.se.se;
if(!uf.same(u,v)){
ans+=tp.fi;
uf.merge(u,v);
}
}
rep(i,n){
assert(uf.same(i,0));
}
print(ans);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
598 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
5083 ms |
275928 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
610 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
752 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
720 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
736 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1264 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
634 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
647 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
607 ms |
786432 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |