이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
typedef long long ll;
const ll inf = 1e18;
const ll mod = 1e9 + 7;
#include <prize.h>
int find_best(int n) {
    vector<pair<int, int>> s;
    for (int i = 0; i < min(n, 500); i++) {
        vector<int> res = ask(i);
        s.push_back({res[0] + res[1], -i});
    }
    sort(s.rbegin(), s.rend());
    int ind = -(s[0].se);
    int cur = s[0].fi;
    int val = s[0].fi;
    while(true) {
        int l = ind, r = n;
        int last = -1;
        while (r - l > 1) {
            int m = (r + l) / 2;
            auto an = ask(m);
            if (cur == an[1]) {
                l = m;
            } else {
                r = m;
                last = an[1];
            }
        }
        if (last == 0) {
            return r;
        }
        ind = r;
        vector<int> an = ask(ind);
        while (an[0] + an[1] < val) {
            if (an[1] == 0) {
                return ind;
            }
            ind++;
            an = ask(ind);
        }
        last = an[1];
    }
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |