Submission #101344

#TimeUsernameProblemLanguageResultExecution timeMemory
101344asifthegreatAliens (IOI07_aliens)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define int long long using namespace std; char s[100]; int q = 0; int n; bool valid(int x,int y) { if(x <= 0 or y <= 0 or x > n or y > n)return false; return true; } bool query(int x,int y) { if(!valid(x,y))return false; printf("examine %lld %lld\n",x,y); fflush(stdout); scanf("%s",s); if(s[0] == 't')return true; return false; } void anss(int a,int b) { printf("solution %lld %lld\n",a,b); fflush(stdout); } int32_t main() { int x,y; scamf("%lld %lld %lld",&n,&x,&y); int temp_x = x,temp_y = y; while(1){ if(!query(temp_x+1ll,y))break; for(int i = 0; i <= 30;i++){ if(temp_x+(1ll<<i) > n)break; if(query(temp_x+(1ll<<i),y)){ temp_x += (1ll<<i); } else break; } } //cout << q << endl; //cout << temp_x << endl; int niche = temp_x; temp_x = x; while(1){ if(!query(temp_x-1,y))break; for(int i = 0; i <= 30;i++){ if(temp_x-(1ll<<i) <= 0)break; if(query(temp_x-(1ll<<i),y)){ temp_x -= (1ll<<i); } else break; } } //cout << q << endl; //cout << temp_x << endl; int upore = temp_x; //cout << niche << " " << upore << endl; int expand = niche-upore+1; //cout << expand << endl; while(1){ if(!query(x,temp_y+1ll))break; for(int i = 0; i <= 30;i++){ //if(x+(1ll > n)break; if(temp_y+(1ll<<i) > n)break; if(query(x,temp_y+(1ll<<i))){ temp_y += (1ll<<i); } else break; } } int dan = temp_y; int bam = temp_y-expand+1; //{upore,niche,dan,bam roilo..} int per_upore = upore,per_niche = niche,per_dan = dan,per_bam = bam; //cout << q << endl; while(1){ if(!query(upore-1,bam-1))break; upore--,bam--; upore = upore-expand+1; bam = bam-expand+1; //cout << upore << " " << bam << endl;//exit(0); } while(1){ if(!query(upore,bam-expand-1))break; bam = bam-expand*2; } //cout << bam << endl; while(1){ if(!query(upore-expand-1,bam))break; upore = upore-expand*2; } anss(upore+(expand*2)+(expand/2),bam+(expand*2)+(expand/2)); return 0; }

Compilation message (stderr)

aliens.cpp: In function 'int32_t main()':
aliens.cpp:35:2: error: 'scamf' was not declared in this scope
  scamf("%lld %lld %lld",&n,&x,&y);
  ^~~~~
aliens.cpp:35:2: note: suggested alternative: 'scanf'
  scamf("%lld %lld %lld",&n,&x,&y);
  ^~~~~
  scanf
aliens.cpp:81:6: warning: unused variable 'per_upore' [-Wunused-variable]
  int per_upore = upore,per_niche = niche,per_dan = dan,per_bam = bam;
      ^~~~~~~~~
aliens.cpp:81:24: warning: unused variable 'per_niche' [-Wunused-variable]
  int per_upore = upore,per_niche = niche,per_dan = dan,per_bam = bam;
                        ^~~~~~~~~
aliens.cpp:81:42: warning: unused variable 'per_dan' [-Wunused-variable]
  int per_upore = upore,per_niche = niche,per_dan = dan,per_bam = bam;
                                          ^~~~~~~
aliens.cpp:81:56: warning: unused variable 'per_bam' [-Wunused-variable]
  int per_upore = upore,per_niche = niche,per_dan = dan,per_bam = bam;
                                                        ^~~~~~~
aliens.cpp: In function 'bool query(long long int, long long int)':
aliens.cpp:21:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%s",s);
  ~~~~~^~~~~~~~