/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 332.0 KiB
#2 Wrong Answer 27ms 544.0 KiB
#3 Wrong Answer 39ms 1.082 MiB

Code

#ifndef LOCAL
#include <bits/stdc++.h>
#define debug(...)
#endif

using namespace std;
#define int long long
#define cinv(v) for (auto &it:v) cin>>it;
#define coutv(v) for (auto &it:v) cout<< it<<' '; cout<<'\n';

const int INF = 2e5 + 5;

void shelby() {
    int n;
    cin >> n;
    vector<int> v(n);
    cinv(v)
    int sum = accumulate(v.begin(), v.end(), 0LL);
    if (find(v.begin(), v.end(), 0) == v.end()) {
        cout << "0\n";
        return;
    }
    auto ok = [&](int x)-> bool {
        return x * (x + 1) / 2 <= sum;
    };
    int l = 0, r = INF, ans;
    while (l <= r) {
        int m = (l + r) / 2;
        if (ok(m)) ans = m, l = m + 1;
        else r = m - 1;
    }
    cout << ans + 1 << '\n';
}

signed main() {
    cin.tie(0)->sync_with_stdio(0);
    int t = 1;
    cin >> t;
    for (int _ = 1; _ <= t; ++_) {
        // cout << "Case " << _ << ": ";
        shelby();
    }
}

Information

Submit By
Type
Submission
Problem
P1114 Maximize the MEX
Contest
Brain Booster #7
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 15:07:08
Judged At
2024-11-05 15:07:08
Judged By
Score
5
Total Time
39ms
Peak Memory
1.082 MiB