# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1009752 | u_suck_o | Hotter Colder (IOI10_hottercolder) | C++17 | 444 ms | 58180 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 "bits/stdc++.h"
#include "grader.h"
using namespace std;
int Guess(int G);
int f(int l, int r) {
if (l == r)
return l;
int g1 = Guess(l);
int g2 = Guess(r);
if (r - l == 1) {
if (g2 == -1)
return l;
else
return r;
}
if (g2 == 0)
return (l+r)/2;
if (g2 == -1) {
if ((l + r) % 2 == 1)
return f(l, (l+r)/2-1);
else
return f(l, (l+r)/2);
}
else {
if ((l+r) % 2 == 1)
return f((l+r)/2, r);
else
return f((l+r)/2+1, r);
}
}
int HC(int N){
return f(1, N);
}
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... |