Submission #467358

# Submission time Handle Problem Language Result Execution time Memory
467358 2021-08-22T17:56:36 Z idk321 Sure Bet (CEOI17_sure) C++17
0 / 100
1 ms 204 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

const int N = 100005;
double odds [2][N];



int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> odds[0][i] >> odds[1][i];
    }
    sort(odds[0], odds[0] + n, greater<double>());
    sort(odds[1], odds[1] + n, greater<double>());

    double res = 0;
    double val1 = 0;
    int j = -1;
    for (int i = 0; i < n; i++) {
        double val2 = 0;
        val1 += odds[0][i];
        int goal = -1;
        for (int j = 0; j < n; j++) {

            val2 += odds[1][j];
            if (val2 >= val1) {
                goal = j;
                break;
            }
        }

        res = max(res, min(val1, val2) - i - goal - 2);
        if (goal != 0) {
            val2 -= odds[1][goal];
            goal--;
        }
        res = max(res, min(val1, val2) - i - goal - 2);
    }

    cout << fixed << setprecision(4) << res << "\n";
}

/*
4
1.4 3.7
1.2 2
1.6 1.4
1.9 1.5
*/

Compilation message

sure.cpp: In function 'int main()':
sure.cpp:25:9: warning: unused variable 'j' [-Wunused-variable]
   25 |     int j = -1;
      |         ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 204 KB Output is correct
2 Incorrect 1 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 1 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 1 ms 204 KB Output isn't correct
3 Halted 0 ms 0 KB -