This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "prize.h"
#include<bits/stdc++.h>
using namespace std;
map<int, vector<int>> mp;
vector<int> askk (int x) {
    if (mp.count(x) == 0) return mp[x] = ask(x);
    return mp[x];
}
int find_best(int n) {
	int mx = 0, lim = 500;
	for (int i = 0; i < min(n, lim); i ++) {
        vector<int> a = askk(i);
        mx = max(mx, a[0] + a[1]);
        if (a[0] + a[1] == 0) return i;
	}
	int xxx = 500;
	for (int i = 0; i < n; i ++) {
        vector<int> a = askk(i);
        if (a[0] + a[1] == mx) {
            if (i + xxx < n) {
                vector<int> c = askk(i + xxx);
                if (a[1] == c[1]) {
                    i += xxx;
                    continue;
                }
            }
            int l = i, r = min(n - 1, i + xxx);
            while (l < r) {
                int mid = (l + r) / 2;
                vector<int> b = askk(mid);
                if (a[1] == b[1]) l = mid + 1;
                else r = mid;
                
            }
            i = l - 1;
        }
        else if (a[0] + a[1] == 0) return i;
	}
}
Compilation message (stderr)
prize.cpp: In function 'int find_best(int)':
prize.cpp:40:1: warning: control reaches end of non-void function [-Wreturn-type]
   40 | }
      | ^| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |