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 "grader.h"
int HC(int N){
if (N == 1)return N;
int left = 1;
int right = N;
Guess(1);
if (N == 2) {
if (Guess(2) == 1)return 2;
return 1;
}
int mid = (left + right) / 2;
while (left < right) {
mid = (left + right) / 2;
int query = Guess(mid);
if (query == 1) {//hotter
left = mid+1;
}
else if (query == -1) {//colder
right = mid-1;
}
else {// same
right = mid - 1;
left = left + 1;
}
}
Guess(right);
while (right > 1) {
if (Guess(right - 1) == -1)return right;
right--;
}
return right;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |