답안 #886702

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
886702 2023-12-12T17:13:48 Z aykhn Sure Bet (CEOI17_sure) C++17
0 / 100
1 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 <= sum2) 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++)
    {
        _();
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -