Submission #412390

#TimeUsernameProblemLanguageResultExecution timeMemory
412390DaktoAliens (IOI07_aliens)C++17
0 / 100
2 ms200 KiB
#include <bits/stdc++.h> using namespace std; bool query(int x, int y){ cout<<"examine "<<x<<" "<<y<<endl; string s; cin>>s; return s=="true"; } int main(){ int n,x,y; cin>>n>>x>>y; //find right bound int l=x, r=n; while(l<r){ int m=(l+r+1)/2; if(query(m,y)) l=m; else r=m-1; } if(!query((x+l)/2,y)){ r=(x+l)/2; l=x; while(l<r){ int m=(l+r+1)/2; if(query(m,y)) l=m; else r=m-1; } } int lb=l; l=1, r=x; while(l<r){ int m=(l+r)/2; if(query(m,y)) r=m; else l=m+1; } if(!query((x+l)/2,y)){ l=(x+l)/2; r=x; while(l<r){ int m=(l+r)/2; if(query(m,y)) r=m; else l=m+1; } } int rb=l; l=y, r=n; while(l<r){ int m=(l+r+1)/2; if(query(x,m)) l=m; else r=m-1; } if(!query(x,(y+l)/2)){ r=(y+l)/2; l=y; while(l<r){ int m=(l+r+1)/2; if(query(x,m)) l=m; else r=m-1; } } int ub=l; l=1, r=y; while(l<r){ int m=(l+r)/2; if(query(x,m)) r=m; else l=m+1; } if(!query(x,(y+l)/2)){ l=(y+l)/2; r=y; while(l<r){ int m=(l+r)/2; if(query(x,m)) r=m; else l=m+1; } } int db=l; int cx=(lb+rb)/2, cy=(ub+db)/2, d=rb-lb+1; bool up=cy+2*d<=n?query(cx,cy+2*d):0; bool down=cy-2*d>0?query(cx,cy-2*d):0; bool left=cx-2*d>0?query(cx-2*d,cy):0; bool right=cx+2*d<=n?query(cx+2*d,cy):0; if(up && down && left && right){ cout<<"solution "<<cx<<" "<<cy<<endl; return 0; } if(down+up+left+right==3){ if(!down){ cout<<"solution "<<cx<<" "<<cy+2*d<<endl; } if(!up){ cout<<"solution "<<cx<<" "<<cy-2*d<<endl; } if(!left){ cout<<"solution "<<cx+2*d<<" "<<cy<<endl; } if(!down){ cout<<"solution "<<cx-2*d<<" "<<cy<<endl; } return 0; } if(down && right){ if(cx + 4*d<=n && query(cx+4*d,cy)){ cout<<"solution "<<cx+2*d<<" "<<cy-2*d<<endl; } else{ cout<<"solution "<<cx+d<<" "<<cy-d<<endl; } } if(down && left){ if(cx - 4*d>0 && query(cx-4*d,cy)){ cout<<"solution "<<cx-2*d<<" "<<cy-2*d<<endl; } else{ cout<<"solution "<<cx-d<<" "<<cy-d<<endl; } } if(up && right){ if(cx + 4*d<=n && query(cx+4*d,cy)){ cout<<"solution "<<cx+2*d<<" "<<cy+2*d<<endl; } else{ cout<<"solution "<<cx+d<<" "<<cy+d<<endl; } } if(up && left){ if(cx - 4*d>0 && query(cx-4*d,cy)){ cout<<"solution "<<cx-2*d<<" "<<cy+2*d<<endl; } else{ cout<<"solution "<<cx-d<<" "<<cy+d<<endl; } } }
#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...