#include "prize.h"
#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rep2(i, a, b) for (int i = (int)(a); i < (int)(b); ++i)
#define rrep(i, n) for (int i = (int)(n) - 1; i >= 0; --i)
#define rrep2(i, a, b) for (int i = (int)(b) - 1; i >= (int)(a); --i)
#define all(v) begin(v), end(v)
#define rall(v) rbegin(v), rend(v)
using namespace std;
using ll = long long;
template<class T, class U> bool chmin(T& a, const U& b) { return a > b ? a = b, true : false; }
template<class T, class U> bool chmax(T& a, const U& b) { return a < b ? a = b, true : false; }
vector<vector<int>> memo;
vector<int> Ask(int n) {
if (memo[n].empty()) memo[n] = ask(n);
return memo[n];
}
int find_best(int n) {
memo.resize(n);
int cnt = 0;
rep (i, 500) {
auto res = Ask(i);
chmax(cnt, res[0] + res[1]);
if (res[0] + res[1] == 0) return i;
if (cnt >= 30) break;
}
int x = 500;
while (x < n) {
int y = 0;
while (x < n) {
auto res = Ask(x);
if (res[0] + res[1] == 0) return x;
if (res[0] + res[1] == cnt) {
y = res[0];
break;
}
++x;
}
int ok = 0, ng = n;
while (ng - ok > 1) {
int mid = (ok + ng) / 2;
if (mid <= x) ok = mid;
else {
auto res = Ask(mid);
if (res[0] + res[1] == 0) return mid;
if (res[0] + res[1] < cnt) ng = mid;
else if (res[0] > y) ng = mid;
else ok = mid;
}
}
x = ok + 1;
}
}
Compilation message
prize.cpp: In function 'int find_best(int)':
prize.cpp:61:1: warning: control reaches end of non-void function [-Wreturn-type]
61 | }
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
5208 KB |
Output is correct |
2 |
Correct |
8 ms |
5404 KB |
Output is correct |
3 |
Correct |
4 ms |
4952 KB |
Output is correct |
4 |
Correct |
5 ms |
4952 KB |
Output is correct |
5 |
Correct |
6 ms |
4952 KB |
Output is correct |
6 |
Correct |
3 ms |
4952 KB |
Output is correct |
7 |
Correct |
4 ms |
4948 KB |
Output is correct |
8 |
Correct |
5 ms |
4952 KB |
Output is correct |
9 |
Correct |
4 ms |
4952 KB |
Output is correct |
10 |
Correct |
5 ms |
5204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
4948 KB |
Output is correct |
2 |
Correct |
5 ms |
5208 KB |
Output is correct |
3 |
Correct |
5 ms |
4952 KB |
Output is correct |
4 |
Correct |
5 ms |
4952 KB |
Output is correct |
5 |
Correct |
6 ms |
4952 KB |
Output is correct |
6 |
Correct |
3 ms |
4952 KB |
Output is correct |
7 |
Correct |
5 ms |
5156 KB |
Output is correct |
8 |
Correct |
5 ms |
4952 KB |
Output is correct |
9 |
Correct |
5 ms |
4952 KB |
Output is correct |
10 |
Correct |
4 ms |
4952 KB |
Output is correct |
11 |
Correct |
3 ms |
4952 KB |
Output is correct |
12 |
Correct |
3 ms |
4952 KB |
Output is correct |
13 |
Correct |
5 ms |
5208 KB |
Output is correct |
14 |
Correct |
1 ms |
856 KB |
Output is correct |
15 |
Correct |
6 ms |
5032 KB |
Output is correct |
16 |
Correct |
29 ms |
5436 KB |
Output is correct |
17 |
Incorrect |
22 ms |
5268 KB |
Integer 200000 violates the range [0, 199999] |
18 |
Halted |
0 ms |
0 KB |
- |