Submission #108010

#TimeUsernameProblemLanguageResultExecution timeMemory
108010redaThe Big Prize (IOI17_prize)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include "prize.h" using namespace std; int find_best(int n) { int low , high; low =0; high=n-1; while(low<=high) { int mid=(low+high)/2; vector<int> arr=ask(mid); if(arr[0]==0 && arr[1]==0)return mid; else{ if(arr[0])high=mid; else low=mid+1; } return -1; }

Compilation message (stderr)

prize.cpp: In function 'int find_best(int)':
prize.cpp:19:1: error: expected '}' at end of input
 }
 ^
prize.cpp:19:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^