이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
}
컴파일 시 표준 에러 (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... |