#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define FOR(i,a,b) for (auto i = (a); i <= (b); ++i)
#define NFOR(i,a,b) for(auto i = (a); i >= (b); --i)
#define all(x) (x).begin(), (x).end()
#define sz(x) int(x.size())
#define mp(i,a) make_pair(i,a)
#define pb(a) push_back(a)
#define bit(x,b) (x&(1LL<<b))
typedef long long int lli;
typedef pair <lli,lli> ii;
typedef pair <lli,ii> iii;
typedef vector <lli> vi;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int test=1;
for(;test>0;--test)
{
float n,ans=0;
cin>>n;
int k=-1;
vector<float> f(n),s(n);
for(int i=0;i<n;++i)
cin>>f[i]>>s[i];
sort(all(f),greater<float>());
sort(all(s),greater<float>());
if(k==-1&&s[0]<1)
k=0;
for(int i=1;i<n;++i)
{
if(k==-1&&s[i]<1)
k=i;
f[i]=f[i]+f[i-1];
s[i]=s[i]+s[i-1];
}
if(k==-1)
k=n;
for(int i=0;i<n;++i)
{
lli j=lower_bound(all(s),f[i])-s.begin();
j=min(j,k*1LL);
if(j==n)
j=n-1;
ans=max(ans,min(f[i]-i-1-j-1,s[j]-i-1-j-1));
}
cout<<fixed<<setprecision(4)<<ans<<endl;
}
return(0);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Incorrect |
4 ms |
384 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Incorrect |
4 ms |
384 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
384 KB |
Output is correct |
3 |
Incorrect |
4 ms |
384 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |