# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
79140 | Sherazin | Aliens (IOI07_aliens) | C++14 | 4 ms | 620 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 long long long
#define pii pair<long, long>
#define x first
#define y second
using namespace std;
long n, a, b, m;
map<pii, long> mp;
void print(const char *c, long x, long y) { printf(c, x, y), fflush(stdout); }
bool get(long x, long y) {
if(x < 1 || x > n || y < 1 || y > n) return false;
if(!mp.count(pii(x, y))) {
char s[10];
print("examine %lld %lld\n", x, y);
scanf(" %s", s);
mp[pii(x, y)] = (s[0] == 't');
}
return mp[pii(x, y)];
}
long find(long x, long y, long dx, long dy) {
long d = 1;
while(get(x + dx*d, y + dy*d)) d <<= 1;
long l = d >> 1, r = d;
while(l < r) {
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... |