Submission #348702

#TimeUsernameProblemLanguageResultExecution timeMemory
348702apostoldaniel854Aliens (IOI07_aliens)C++14
0 / 100
3073 ms492 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; #define pb push_back #define dbg(x) cerr << #x << " " << x << "\n" int n; int nr_op; bool ask (int x, int y) { /// if the grass on (x, y) is flattened if (x <= 0 || y <= 0 || x > n || y > n) return false; nr_op++; assert (nr_op <= 300); cout << "extract " << x << " " << y << endl; string answer; cin >> answer; if (answer == "true") return true; return false; } int dx[] = {1, 1, -1, -1}; int dy[] = {1, -1, 1, -1}; int main() { int xn, yn; cin >> n >> xn >> yn; int sz = 0; int x = xn, y = yn; while (ask (x, y + (1 << sz))) sz++; sz--; int y2 = y; while (sz >= 0) { if (ask (x, y2 + (1 << sz))) y2 += (1 << sz); sz--; } sz = 0; while (ask (x, y - (1 << sz))) sz++; sz--; int y1 = y; while (sz >= 0) { if (ask (x, y1 - (1 << sz))) y1 -= (1 << sz); sz--; } sz = 0; while (ask (x + (1 << sz), y)) sz++; sz--; int x2 = x; while (sz >= 0) { if (ask (x2 + (1 << sz), y)) x2 += (1 << sz); sz--; } sz = 0; while (ask (x - (1 << sz), y)) sz++; sz--; int x1 = x; while (sz >= 0) { if (ask (x1 - (1 << sz), y)) x1 -= (1 << sz); sz--; } int m = x2 - x1 + 1; int x_mid = (x2 - x1 + 1) / 2; int y_mid = (y2 - y1 + 1) / 2; bool moved = true; do { moved = true; for (int dir = 0; dir < 4; dir++) if (ask (x_mid + 3 * m * dx[dir], y_mid + 3 * m * dy[dir])) { x_mid += m * dx[dir]; y_mid += m * dy[dir]; moved = true; } } while (moved); cout << "solution " << x_mid << " " << y_mid << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...