#include<bits/stdc++.h>
using namespace std;
int n,m;
pair<pair<int,int>,pair<int,int>> edges[10005];
pair<pair<int,int>,pair<int,int>> newe[10005];
vector<pair<pair<int,int>,pair<int,int>>> hull;
int father[300];
int siz[300];
int gas(int x)
{
if(x!=father[x])
father[x]=gas(father[x]);
return father[x];
}
void unite(int x, int y)
{
x = gas(x);
y = gas(y);
if(x==y)
return;
if(siz[x]<siz[y])
swap(x,y);
father[y]=x;
siz[x]+=siz[y];
}
int area(pair<int,int> a, pair<int,int> b, pair<int,int> c)
{
return a.first * (b.second - c.second) + b.first * (c.second - a.second) + c.first * (a.second - b.second);
}
void get_hull()
{
hull.clear();
sort(edges,edges+m);
for(int i=0;i<m;i++)
{
while(hull.size()>=2 && area(hull[hull.size()-2].first,hull[hull.size()-1].first,edges[i].first)<=0)
hull.pop_back();
hull.push_back(edges[i]);
}
int newm=0;
for(int i=0;i<m;i++)
{
pair<pair<int,int>,pair<int,int>> x = *lower_bound(hull.begin(),hull.end(),edges[i]);
if(x!=edges[i])
newe[newm++]=edges[i];
}
m=newm;
for(int i=0;i<m;i++)
edges[i]=newe[i];
}
signed main()
{
ios_base::sync_with_stdio(0);cin.tie(0);
cin>>n>>m;
for(int i=0;i<n;i++)
father[i]=i,siz[i]=1;
for(int i=0;i<m;i++)
{
cin>>edges[i].second.first>>edges[i].second.second>>edges[i].first.first>>edges[i].first.second;
}
int sum0=0,sum1=0;
vector<pair<int,int>> sol;
while(m>0)
{
get_hull();
for(auto e:hull)
{
if(gas(e.second.first)!=gas(e.second.second))
{
unite(e.second.first,e.second.second);
sol.push_back(e.second);
sum0+=e.first.first;
sum1+=e.first.second;
}
}
}
cout<<sum0<<" "<<sum1<<"\n";
for(int i=0;i<sol.size();i++)
cout<<sol[i].first<<" "<<sol[i].second<<"\n";
return 0;
}
Compilation message
timeismoney.cpp: In function 'int main()':
timeismoney.cpp:81:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
81 | for(int i=0;i<sol.size();i++)
| ~^~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
6 |
Incorrect |
1 ms |
484 KB |
Output isn't correct |
7 |
Incorrect |
23 ms |
532 KB |
Output isn't correct |
8 |
Incorrect |
656 ms |
604 KB |
Output isn't correct |
9 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
10 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
11 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
12 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
13 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
14 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
15 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
16 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
17 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
18 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
19 |
Incorrect |
57 ms |
604 KB |
Output isn't correct |
20 |
Incorrect |
56 ms |
604 KB |
Output isn't correct |