#include <bits/stdc++.h>
using namespace std;
#define ios ios::sync_with_stdio(false); cin.tie(NULL);
#define pb push_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define fr first
#define sc second
#define mp make_pair
#define ll long long
const ll INF=1e18,N=1e7+5,M=1e6+1;
ll nxt[N],par[M];
int f(ll x){
if(par[x]==x) return x;
return par[x]=f(par[x]);
}
bool add(ll a, ll b){
a=f(a),b=f(b);
if(a==b) return 0;
if(rand()%2) swap(a,b);
par[a]=b;
return 1;
}
void solve(){
int n;cin>>n;
vector<ll> p(n);
for(int i=0;i<n;i++) cin>>p[i];
sort(all(p));
ll mx=0;
for(int i=0;i<n;i++){
nxt[p[i]]=i;
mx=max(mx,p[i]);
par[i]=i;
}
for(int i=0;i<=mx;i++) nxt[i]=-1;
for(int i=mx;i>=0;i--){
if(nxt[i]==-1) nxt[i]=nxt[i+1];
}
vector<pair<int,pair<int,int> > > a;
for(int i=0;i<n;i++){
if(i<n-1 && p[i]==p[i+1]) continue;
//g[p[i]].pb(make_pair(p[i+1],p[i+1]%p[i]));
a.pb(mp(p[i+1]%p[i],mp(i,i+1)));
for(int j=p[i]*2;j<=mx;j+=p[i]){
a.pb(mp(p[nxt[j]]%p[i],mp(i,nxt[j])));
//g[p[i]].pb(make_pair(nxt[j],nxt[j]%p[i]));
}
}
sort(all(a));
ll ans=0;
for(auto it: a){
//cerr<<it.sc.fr<<' '<<it.sc.sc<<' '<<it.fr<<' ';
if(add(it.sc.fr,it.sc.sc)){
//cerr<<"<-";
ans+=it.fr;
}
//cerr<<endl;
}
cout<<ans<<endl;
}
int main(){
solve();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
51 ms |
80208 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2652 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
37 ms |
80212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
111 ms |
39476 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
22 ms |
14544 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
264 ms |
64112 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
36 ms |
14368 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
188 ms |
109488 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
182 ms |
109168 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
57 ms |
84936 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |