# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1061669 |
2024-08-16T11:36:44 Z |
dimasnbayu |
Sirni (COCI17_sirni) |
C++17 |
|
4555 ms |
786432 KB |
#include<bits/stdc++.h>
using namespace std;
// #define int long long
const int sz=1e5+5;
int par[sz];
vector<int> arr;
vector<pair<int,pair<int,int>>> v;
int find(int x){
if(par[x]==x) return x;
else return par[x]=find(par[x]);
}
void merge(int x, int y){
x=find(x),y=find(y);
par[x]=y;
}
bool check(int x, int y){
return find(x)==find(y);
}
signed main(){
int n; cin>>n;
for(int i=1;i<=n;i++){
int a; cin>>a;
arr.push_back(a);
}
sort(arr.begin(),arr.end());
arr.erase(unique(arr.begin(),arr.end()), arr.end());
int nx[arr.back()+5]={},av[arr.back()+5]={};
// sort(arr.begin(),arr.end());
for(int i=0;i<arr.size();i++){
par[i]=i;
av[arr[i]]=i;
}
int now=0;
for(int i=0;i<=arr.back();i++){
while(now+1<arr.size() && arr[now]<=i) now++;
nx[i]=now;
// cout<<nx[i]<<" ";
}
// cout<<endl;
for(int i=0;i<arr.size();i++){
// cout<<arr[i]<<" ";
for(int j=arr[i];j<=arr.back();j+=arr[i]){
if(i==nx[j]) continue;
if(v.size()==0 || ((v.back().second.first!=i || v.back().second.second!=nx[j]))) v.push_back({arr[nx[j]]%arr[i],{i,nx[j]}});
if(arr[av[j]]%arr[i]==0) v.push_back({0,{i,av[j]}});
}
}
// cout<<endl;
sort(v.begin(),v.end());
int ans=0;
for(int i=0;i<v.size();i++){
// cout<<v[i].first<<" "<<v[i].second.first<<" "<<v[i].second.second<<endl;
if(!check(v[i].second.first,v[i].second.second)){
ans+=v[i].first;
merge(v[i].second.first,v[i].second.second);
}
}
cout<<ans;
}
Compilation message
sirni.cpp: In function 'int main()':
sirni.cpp:29:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for(int i=0;i<arr.size();i++){
| ~^~~~~~~~~~~
sirni.cpp:35:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | while(now+1<arr.size() && arr[now]<=i) now++;
| ~~~~~^~~~~~~~~~~
sirni.cpp:40:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for(int i=0;i<arr.size();i++){
| ~^~~~~~~~~~~
sirni.cpp:51:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, std::pair<int, int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | for(int i=0;i<v.size();i++){
| ~^~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
51 ms |
78672 KB |
Output is correct |
2 |
Correct |
99 ms |
81348 KB |
Output is correct |
3 |
Correct |
64 ms |
78752 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
604 KB |
Output is correct |
2 |
Correct |
800 ms |
277296 KB |
Output is correct |
3 |
Correct |
56 ms |
80320 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
51 ms |
78680 KB |
Output is correct |
2 |
Correct |
51 ms |
78672 KB |
Output is correct |
3 |
Correct |
60 ms |
78928 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
186 ms |
34360 KB |
Output is correct |
2 |
Correct |
611 ms |
109344 KB |
Output is correct |
3 |
Correct |
302 ms |
59432 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
32 ms |
11520 KB |
Output is correct |
2 |
Correct |
277 ms |
58408 KB |
Output is correct |
3 |
Correct |
180 ms |
31028 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
364 ms |
60700 KB |
Output is correct |
2 |
Correct |
852 ms |
107800 KB |
Output is correct |
3 |
Correct |
281 ms |
60392 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
65 ms |
9544 KB |
Output is correct |
2 |
Correct |
705 ms |
109084 KB |
Output is correct |
3 |
Correct |
272 ms |
59100 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
267 ms |
105272 KB |
Output is correct |
2 |
Correct |
4219 ms |
473724 KB |
Output is correct |
3 |
Correct |
301 ms |
105012 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
330 ms |
129624 KB |
Output is correct |
2 |
Runtime error |
899 ms |
786432 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
80 ms |
81860 KB |
Output is correct |
2 |
Correct |
4555 ms |
474892 KB |
Output is correct |
3 |
Correct |
287 ms |
58928 KB |
Output is correct |