# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
468671 |
2021-08-29T09:52:21 Z |
wdjpng |
Sure Bet (CEOI17_sure) |
C++17 |
|
1 ms |
204 KB |
#include <bits/stdc++.h>
#define int long long
#define rep(i,n) for(int i = 0; i < n; i++)
#define all(a) a.begin(), a.end()
using namespace std;
signed main()
{
int n;
cin>>n;
vector<double>a(n),b(n);
rep(i,n) cin>>a[i]>>b[i];
sort(all(a));
sort(all(b));
reverse(all(a));
reverse(all(b));
double maxx = 0;
int off = 2;
vector<double>sum(2);
vector<int>point(2,1);
sum[0] = a[0];
sum[1] = b[0];
while(max(point[0], point[1])<n)
{
maxx=max(maxx, min(sum[0], sum[1])-off);
if(sum[0]>sum[1]) {sum[1]+=b[point[1]]; point[1]++;}
else {sum[0]+=a[point[0]]; point[0]++;}
off++;
}
printf("%.4lf",(double)maxx);
cout<<"\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |