Submission #886704

# Submission time Handle Problem Language Result Execution time Memory
886704 2023-12-12T17:17:16 Z aykhn Sure Bet (CEOI17_sure) C++17
0 / 100
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 = -infll;
    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 <= sum2) sum1 += a[i++];
        else sum2 += b[j++];
        res = max(res, min(sum2, sum1) - i - j);
    }
  	cout.precision(4);
    cout << fixed << 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 -