# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
71184 | chhun | Hotter Colder (IOI10_hottercolder) | C++14 | 761 ms | 8164 KiB |
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 <stdio.h>
#include "grader.h"
int g1;
int g2;
int HC_(int l,int r) {
if (r - l <= 3) {
int g = Guess(l);
for (int i = l; i <= r; i++) {
if (Guess(i) == -1)return i-1;
}
return r;
}
g1 = Guess(l);
g2 = Guess(r);
if (g2 == 0)
return (l + r + 1) / 2;
else if (g2 == 1) {
return HC_((r + l + 1) / 2, r);
}
else if (g2 == -1) {
return HC_(l, (l + r-1) / 2);
}
}
int HC(int N) {
g1 = Guess(1);
g2 = Guess(N);
if (g2 == 0)
return (N + 1) / 2;
else if (g2 == 1) {
return HC_((N + 1) / 2 + 1, N);
}
else if (g2 == -1) {
return HC_(1, N / 2);
}
}
Compilation message (stderr)
# | 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... |