#include <iostream>
#include <string>
#define ll long long
using namespace std;
const string ex_cmd = "examine";
const string sol_cmd = "solution";
bool I(string cmd, int x, int y) {
cout << cmd << " " << x << " " << y << endl;
string flat="#";
if (cmd[0] == 'e')cin >> flat;
return flat[0] == 't';
}
int main() {
int N, X0, Y0; cin >> N >> X0 >> Y0;
ll rx,lx, last=X0,d = 1;
ll l, r;
while (1) {
rx = X0 + d;
if (rx > N) {
rx = N;
break;
}
if (!I(ex_cmd, rx, Y0)) {
--rx;
break;
}
d += d;
last = rx;
}
l = last, r = rx;
while (l <= r) {
ll m = (l + r) >> 1;
if (I(ex_cmd, m, Y0)) l = m + 1, rx = m;
else r = m - 1;
}
d = -1; last = X0;
while (1) {
lx = X0 + d;
if (lx < 1) {
lx = 1;
break;
}
if (!I(ex_cmd, lx, Y0)) {
++lx;
break;
}
d += d;
last = lx;
}
l = lx, r = last;
while (l <= r) {
ll m = (l + r) >> 1;
if (I(ex_cmd, m, Y0)) r = m - 1, lx = m;
else l = m + 1;
}
int M = rx - lx + 1;
X0 = lx;
l = Y0 - M; r = Y0;
if (l < 1) l = 1;
while (l <= r) {
ll m=(l + r) >> 1;
if (I(ex_cmd, X0, m)) r = m - 1, Y0 = m;
else l = m + 1;
}
for (X0 -= M + M;; X0 -= M + M) {
if (X0 < 1 || !I(ex_cmd, X0, Y0)) {
X0 += M + M;
break;
}
}
for (Y0 -= M + M;; Y0 -= M + M) {
if (Y0 < 1 || !I(ex_cmd, X0, Y0)) {
Y0 += M + M;
break;
}
}
I(sol_cmd,X0+M+M+(M>>1),Y0 + M + M + (M >> 1));
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
400 KB |
Output is correct |
2 |
Incorrect |
2 ms |
256 KB |
Incorrect |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
412 KB |
Output is correct |
2 |
Correct |
2 ms |
304 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
384 KB |
Incorrect |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
256 KB |
Incorrect |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Incorrect |
3 ms |
256 KB |
Incorrect |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
384 KB |
Output is correct |
2 |
Incorrect |
3 ms |
256 KB |
Incorrect |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
3 ms |
384 KB |
Output is correct |
3 |
Incorrect |
4 ms |
384 KB |
Incorrect |