# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
91672 | ics0503 | Aliens (IOI07_aliens) | C++17 | 3 ms | 380 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<string.h>
long long min(long long a, long long b) { if (a < b)return a; return b; }
bool qr(long long x, long long y) {
printf("examine %lld %lld\n", x, y);
fflush(stdout);
char X[10]; scanf("%s", X);
if (strcmp(X, "true") == 0)return 1; return 0;
}
void sol(long long x, long long y) {
printf("solution %lld %lld\n", x, y);
fflush(stdout);
}
int main() {
long long n, x0, y0; scanf("%lld%lld%lld", &n, &x0, &y0);
long long sx, sy, ex, ey, i, j, bef;
bef = x0;
for (i = 0;; i++) {
long long x = x0 + (1ll << i);
if (x > n)x = n;
if (x == n || qr(x, y0) == 0) {
long long s = bef, e = x;
while (s <= e) {
long long m = (s + e) / 2;
if (qr(m, y0))s = m + 1, ex = m;
else e = m - 1;
}
break;
}
bef = x;
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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |