제출 #89996

#제출 시각아이디문제언어결과실행 시간메모리
89996nikolapesic2802The Big Prize (IOI17_prize)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
int find_best(int n) {
    int l=0,r=n-1;
    while(true)
    {
        int m=(l+r)>>1;
        vector<int> tr=ask(m);
        if(tr[0]==1)
        {
            r=m-1;
        }
        else
        {
            if(tr[1]==1)
            {
                l=m+1;
            }
            else
            {
                return m;
            }
        }
    }
	/*for(int i = 0; i < n; i++) {
		std::vector<int> res = ask(i);
		if(res[0] + res[1] == 0)
			return i;
	}
	return 0;*/
}

컴파일 시 표준 에러 (stderr) 메시지

prize.cpp: In function 'int find_best(int)':
prize.cpp:8:24: error: 'ask' was not declared in this scope
         vector<int> tr=ask(m);
                        ^~~