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>
#define pb push_back
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
#define MAXN 100010
#define double long double
using namespace std;
int n;
double ress=0, a[MAXN], b[MAXN];
int main(){
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n;
for (int i=0; i<n; i++) cin>>a[i]>>b[i];
sort(a, a+n, greater<double>());
sort(b, b+n, greater<double>());
double aa=0, bb=0;
int i=0, j=0;
while (i<n || j<n)
{
if (i==n || bb<aa)
{
bb+=b[j++];
}
else if (j==n || aa<bb)
{
aa+=a[i++];
}
else if (aa==bb) { if (a[i]>=b[j]) aa+=a[i++]; else bb+=b[j++]; }
aa--; bb--;
ress=max(ress, min(aa, bb));
}
cout<<fixed<<setprecision(4)<<ress<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |