#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
const int B = 1000;
int find_best(int n) {
for (int i = 0; i < n; ++i) {
vector<int> res = ask(i);
if (res[0] + res[1] == 0) {
return i;
}
if (res[0] + res[1] >= B) {
int l = i, r = n - 1;
while (l < r) {
int mid = (l + r + 1) >> 1;
vector<int> res2 = ask(mid);
if (res2[1] < res[1]) {//I skipped a more valuable person
r = mid - 1;
} else {
l = mid;
}
}
i = l;
}
//else I will just do i++
}
assert(false);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
49 ms |
344 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
61 ms |
344 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |