Submission #117261

#TimeUsernameProblemLanguageResultExecution timeMemory
117261WongHokFong_cppThe Big Prize (IOI17_prize)C++14
Compilation error
0 ms0 KiB
#include <iostream> #include "prize.h" int res[2]; int find_best(int n) { int l=0,r=n-1; do { int mid=(l+r)/2; res=ask(mid); if (res[1]>0) r=mid; else if (res[2]>0) l=mid; else return mid; } while (l<r); }

Compilation message (stderr)

prize.cpp: In function 'int find_best(int)':
prize.cpp:10:14: error: incompatible types in assignment of 'std::vector<int>' to 'int [2]'
   res=ask(mid);
              ^
prize.cpp:16:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^