# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
863249 |
2023-10-19T21:29:07 Z |
blacktulip |
Sirni (COCI17_sirni) |
C++17 |
|
5000 ms |
786432 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long lo;
#define fi first
#define se second
#define endl "\n"
#define pb push_back
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)
#define _ << " " <<
const lo inf = 1000000000;
const lo li = 500005;
const lo mod = 1000000007;
int n,m,a[li],k,flag,t,fa[li],vis[10000005];
long long cev;
string s;
vector<pair<int,pair<int,int>>> v;
pair<int,int> vis2[10000005];
set<pair<int,int>> st;
inline int dsu(int x){
if(x==fa[x])return x;
return fa[x]=dsu(fa[x]);
}
int main(void){
//~ fio();
cin>>n;
FOR{
fa[i]=i;
cin>>a[i];
}
sort(a+1,a+n+1);
if(a[1]==1){cout<<"0\n";return 0;}
FOR st.insert({a[i],i});
FOR{
if(a[i]==a[i-1]){
v.pb({0,{i-1,i}});
continue;
}
if(vis[a[i]]){v.pb({0,{i,vis[a[i]]}});}
int mn=1000000000;
int ind=-1;
for(int j=a[i];j<=10000000;j+=a[i]){
if(!vis[j])vis[j]=i;
else if(vis2[j].fi!=0 && j!=a[i]){if(vis2[j-a[i]].se!=vis2[j].se || j-a[i]==a[i])v.pb({vis2[j].fi-j,{i,vis2[j].se}});continue;}
auto it=st.lower_bound({j,-inf});
if(j==a[i])it=st.upper_bound({j,inf});
if(it!=st.end()){
v.pb({it->fi-j,{it->se,i}});
if(j!=a[i])vis2[j]=*it;
if(it->fi-j<mn){mn=it->fi-j;ind=it->se;}
}
}
//~ cout<<i<<" ()() "<<endl;
if(~ind)v.pb({mn,{ind,i}});
}
int last=0,ind=0,cnt=1;
for(int i=1;i<=n;i++){
while(cnt<a[i]){
//~ cout<<vis[cnt]<<" () "<<a[i]<<endl;
//~ if(vis[cnt] && vis[cnt]!=i){last=cnt;ind=vis[cnt];}
if(vis[cnt]){last=cnt;ind=vis[cnt];}
cnt++;
}
if(ind)v.pb({a[i]-last,{ind,i}});
}
sort(v.begin(),v.end());
for(auto go:v){
int co=go.fi;
int x=go.se.fi;
int y=go.se.se;
//~ cout<<x<<" () "<<y<<" () "<<co<<endl;
if(dsu(x)==dsu(y))continue;
fa[dsu(x)]=dsu(y);
cev+=co;
}
cout<<cev<<endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
100440 KB |
Output is correct |
2 |
Incorrect |
352 ms |
147904 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
255 ms |
43864 KB |
Output is correct |
2 |
Incorrect |
1308 ms |
320352 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
101468 KB |
Output is correct |
2 |
Correct |
19 ms |
91996 KB |
Output is correct |
3 |
Correct |
28 ms |
109852 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1481 ms |
82000 KB |
Output is correct |
2 |
Correct |
4517 ms |
156404 KB |
Output is correct |
3 |
Correct |
2437 ms |
106876 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
186 ms |
55832 KB |
Output is correct |
2 |
Incorrect |
2798 ms |
107224 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2942 ms |
106824 KB |
Output is correct |
2 |
Execution timed out |
5029 ms |
156800 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1744 ms |
54788 KB |
Output is correct |
2 |
Execution timed out |
5054 ms |
155480 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
442 ms |
151840 KB |
Output is correct |
2 |
Execution timed out |
5027 ms |
522116 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
515 ms |
151452 KB |
Output is correct |
2 |
Runtime error |
1552 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
91 ms |
126920 KB |
Output is correct |
2 |
Runtime error |
1644 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |