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;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
double tmp;
long long a[n], b[n], x=0, y=0, res=0;
for(int i=0; i<n; i++) {
cin >> tmp;
a[i]=tmp*10000;
cin >> tmp;
b[i]=tmp*10000;
//cout << a[i] << " " << b[i] << endl;
}
sort(a, a+n);
sort(b, b+n);
int i=n-1, j=n-1;
while(i>=0 || j>=0){
if(x>y || i<0) y+=b[j--];
else x+=a[i--];
x-=10000;
y-=10000;
//cout << x << " " << y << endl;
res=max(res, min(x, y));
}
tmp=1.0*res/10000;
cout << fixed << setprecision(4) << tmp;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |