Submission #117260

#TimeUsernameProblemLanguageResultExecution timeMemory
117260WongHokFong_cppThe Big Prize (IOI17_prize)C++14
Compilation error
0 ms0 KiB
#include <iostream>
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:9:7: error: 'ask' was not declared in this scope
   res=ask(mid);
       ^~~
prize.cpp:15:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^