#include <bits/stdc++.h>
#define N 200005
#define int long long
using namespace std;
int n;
bool ask(int pos1,int pos2){
if(min(pos1,pos2) < 1 || max(pos1,pos2) > n)return 0;
cout << "examine " << pos1 << " " << pos2 << endl;
string s;
cin >> s;
return s == "1";
}
pair<int,int> lift(int pos1,int pos2,int m,int dir1,int dir2){
for(int i=30;i>=0;i--){
if((1<<i) <= m && ask(pos1 + dir1*(1<<i),pos2 + dir2*(1<<i))){
pos1 += dir1*(1<<i);
pos2 += dir2*(1<<i);
m -= (1<<i);
}
}
return {pos1,pos2};
}
void solve(){
int x,y;
cin >> n >> x >> y;
int m = -1;
int posx = -1,posy = -1;
int l = lift(x,y,2e9,0,-1).second, r = lift(x,y,2e9,0,1).second;
for(int i = 0;i<3;i++){
for(int j = 0;j<3;j++){
if( (i + j) > 2 || (r - l + 1)%((i+j)*2 + 1))continue;
int tmp = (r - l + 1)/((i+j)*2 + 1);
posy = l + 2*i*tmp;
if(lift(x,y,tmp,0,-1).second != posy || (!ask(x,posy + 2*tmp) && !ask(x,posy - 2*tmp)))continue;
if(m != -1)assert(0);
m = tmp;
}
}
posx = lift(x,y,m,-1,0).first;
for(int i=0;i<2;i++){
if(ask(posx - m*i*2,posy))posx -= m*i*2;
if(ask(posx ,posy - m*i*2))posy -= m*i*2;
}
posx += 2*m + m/2;
posy += 2*m + m/2;
cout << "solution " << posx << " " << posy << endl;
}
int32_t main(){
int t=1;
//cin>>t;
while(t--){
solve();
}
#ifdef Local
cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
#endif
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
268 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |