# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
886739 |
2023-12-12T18:18:55 Z |
aykhn |
Sure Bet (CEOI17_sure) |
C++17 |
|
0 ms |
348 KB |
#include <bits/stdc++.h>
// author : aykhn
using namespace std;
typedef long long ll;
#define pb push_back
#define ins insert
#define mpr make_pair
#define all(v) v.begin(), v.end()
#define bpc __builtin_popcount
#define bpcll __builtin_popcountll
#define pii pair<int, int>
#define pll pair<ll, ll>
#define fi first
#define se second
#define infll 0x3F3F3F3F3F3F3F3F
#define inf 0x3F3F3F3F
void _()
{
int n;
cin >> n;
double a[n], b[n];
double res = 0;
for (int i = 0; i < n; i++) cin >> a[i] >> b[i];
sort(a, a + n, greater<double> ());
sort(b, b + n, greater<double> ());
int i = 0;
int j = 0;
double sum1 = 0, sum2 = 0;
while (i < n || j < n)
{
if (i == n) sum2 += b[j++];
else if (j == n) sum1 += a[i++];
else if (sum1 + a[i] <= sum2 + b[j]) sum1 += a[i++];
else sum2 += b[j++];
res = max(res, min(sum2, sum1) - i - j);
}
cout << res << '\n';
}
signed main()
{
int t = 1;
// cin >> t;
for (int tt = 0; tt < t; tt++)
{
_();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |