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, pair<int, int> > asked;
vector<int> pos;
int left_val(int x) {
if (!asked.count(x)) {
vector<int> tmp = ask(x);
asked[x] = make_pair(tmp[0], tmp[1]);
}
return asked[x].first;
}
int right_val(int x) {
if (!asked.count(x)) {
vector<int> tmp = ask(x);
asked[x] = make_pair(tmp[0], tmp[1]);
}
return asked[x].second;
}
void find_pos(int l, int r, int nPos, int all) {
if (l>r || nPos==0)
return;
int mid = (l + r) / 2;
int tmp = mid;
for (; mid>=l; --mid) {
if (left_val(mid)+right_val(mid)==all)
break;
pos.push_back(mid);
}
if (mid>0)
find_pos(l, mid-1, left_val(mid), all);
if (tmp+1<=r)
find_pos(tmp+1, r, nPos - left_val(tmp+1), all);
}
int find_best(int n) {
int l = -1, max_hist = 0;
for (int i=0; i<min(n, 500); ++i) {
if (left_val(i)+right_val(i)>max_hist) {
max_hist = left_val(i) + right_val(i);
l = i;
}
}
find_pos(l, n-1, right_val(l), left_val(l) + right_val(l));
for (auto v : pos) {
if (left_val(v) + right_val(v) == 0)
return v;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |