#include <bits/stdc++.h>
using namespace std;
int n,x,y,ox,oy,l,r,up,lo,sz;
bool check(int x,int y)
{
cout << "examine " << x << ' ' << y; cout.flush();
string s; cin >> s;
return s=="true";
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> n >> x >> y;
ox = x,oy = y;
l = x,r = n;
for(int i = 1;x+i <= n;i*=2)
{
if(!check(x+i,y)){ r = x+i; break; }
else if(!check(x+i-1,y)){ r = x+i-1; break; }
else l = x+i;
x+=i;
}
while(l<r)
{
int m = (l+r)/2;
if(check(m,y))
{
if(!check(m+1,y)){ l = m; break; }
else l = m+1;
}
else r = m-1;
}
up = l;
x = ox,y = oy;
l = 1,r = x;
for(int i = 1;x-i >= 1;i*=2)
{
if(!check(x-i,y)){ l = x-i; break; }
else if(!check(x+i-1,y)){ l = x-i+1; break; }
else r = x-i;
x-=i;
}
while(l<r)
{
int m = (l+r)/2;
if(check(m,y))
{
if(!check(m-1,y)){ l = m; break; }
else r = m-1;
}
else l = m+1;
}
lo = l,sz = lo-up+1;
x = ox,y = oy;
while(check(x-sz*2,y-sz*2)) x-=sz*2,y-=sz*2;
while(check(x-sz*2,y)) x-=sz*2;
while(check(x,y-sz*2)) y-=sz*2;
l = x-sz,r = x;
while(l<r)
{
int m = (l+r)/2;
if(check(m,y))
{
if(!check(m-1,y)){ l = m; break; }
else r = m-1;
}
else l = m+1;
}
x = l;
l = y-sz,r = y;
while(l<r)
{
int m = (l+r)/2;
if(check(x,m))
{
if(!check(x,m-1)){ l = m; break; }
else r = m-1;
}
else l = m+1;
}
y = l;
cout << x+sz*2+sz/2 << ' ' << y+sz*2+sz/2;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
332 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
376 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
376 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
376 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
380 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
376 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
248 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
328 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
3 ms |
248 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2 ms |
376 KB |
Time limit exceeded (wall clock) |
2 |
Halted |
0 ms |
0 KB |
- |