This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define pb push_back
signed main(){
int n;
cin>>n;
vector<double>a,b;
for(int i=0;i<n;i++){
double x,y;
cin>>x>>y;
a.pb(x);
b.pb(y);
}
sort(a.begin(),a.end(),greater<double>());
sort(b.begin(),b.end(),greater<double>());
double ans=0,sma=0,smb=0;
int x=0,y=0;
while(min(x,y)<n){
if (x<n and (sma<smb or y==n))sma+=a[x++];
else smb+=b[y++];
ans=max(ans,min(sma,smb)-(x+y));
}
cout<<fixed<<setprecision(4)<<ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |