# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
54358 | khsoo01 | Aliens (IOI07_aliens) | C++11 | 5 ms | 552 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>
#define X first
#define Y second
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
ll n, x, y;
char a[15];
bool valid (ll A, ll B) {
return (1 <= A && A <= n && 1 <= B && B <= n);
}
bool query (ll A, ll B) {
if(!valid(A, B)) return false;
printf("examine %lld %lld\n",A,B);
fflush(stdout);
scanf("%s",a);
return (a[0] == 't');
}
pll get_bound (ll x, ll y, ll dx, ll dy) {
ll B = 1;
for(;;) {
if(!valid(x+dx*B, y+dy*B)) {
if(dx == 1) B = n-x;
if(dx == -1) B = x-1;
if(dy == 1) B = n-y;
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... |