# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
431343 | 2021-06-17T11:07:14 Z | juggernaut | Aliens (IOI07_aliens) | C++17 | 3 ms | 280 KB |
#include<bits/stdc++.h> #define fr first #define sc second using namespace std; void usaco(string s){freopen((s+".in").c_str(),"r",stdin);freopen((s+".out").c_str(),"w",stdout);} typedef long long ll; #define USING_ORDERED_SET 0 #if USING_ORDERED_SET #include<bits/extc++.h> using namespace __gnu_pbds; template<class T>using ordered_set=tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>; #endif template<class T>void umax(T &a,T b){if(a<b)a=b;} template<class T>void umin(T &a,T b){if(b<a)a=b;} #ifdef IOI2021SG #define printl(args...)printf(args) #else #define printl(args...)((void)0) #endif ll n; bool check(ll x,ll y){ if(!(x&&y&&x<=n&&y<=n))return false; printf("examine %lld %lld\n",x,y); fflush(stdout); string s; cin>>s; return s=="true"; } int main(){ ll x,y; cin>>n>>x>>y; ll l,r; l=0,r=x-1; while(l<r){ ll mid=(l+r+1)>>1; if(check(x-mid,y))l=mid; else{ if(check(x-mid,y-mid))l=mid; else if(check(x-mid,y+mid))l=mid; else r=mid-1; } } ll x1=x-l; l=0,r=n-x; while(l<r){ ll mid=(l+r+1)>>1; if(check(x+mid,y))l=mid; else{ if(check(x+mid,y-mid))l=mid; else if(check(x+mid,y+mid))l=mid; else r=mid-1; } } ll x2=x+l; l=0,r=y-1; while(l<r){ ll mid=(l+r+1)>>1; if(check(x,y-mid))l=mid; else{ if(check(x-mid,y-mid))l=mid; else if(check(x+mid,y-mid))l=mid; else r=mid-1; } } ll y1=y-l; ll y2=y1+(x2-x1); printf("solution %lld %lld\n",(x1+x2)/2,(y1+y2)/2); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | 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 | Correct | 1 ms | 200 KB | Output is correct |
2 | Correct | 2 ms | 200 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 200 KB | Output is correct |
2 | Incorrect | 2 ms | 200 KB | Incorrect |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 200 KB | Output is correct |
2 | Correct | 3 ms | 200 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 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 | Correct | 3 ms | 200 KB | Output is correct |
2 | Incorrect | 3 ms | 200 KB | Incorrect |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 200 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 200 KB | Output is correct |
2 | Correct | 2 ms | 280 KB | Output is correct |
3 | Incorrect | 3 ms | 200 KB | Incorrect |