제출 #1084239

#제출 시각아이디문제언어결과실행 시간메모리
1084239Jovica커다란 상품 (IOI17_prize)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>

using namespace std;
//pair<int,int> prasanja[200001];
/*
int *ask(int i)
{
    cout<< "prasuva za "<<i<<endl;
    int *a = new int [2];
    cin>>a[0]>>a[1];
    return a;
}
*/
int find_best(int n)
{
    queue<pair<int,int> > q;
    q.push({0,n-1});
    while(true)
    {
        int l = q.front().first;
        int r = q.front().second;
        q.pop();
        int mid = (l+r)/2;

        int *a = ask(mid);
        if (a[0]==0 && a[1]==0) return mid;
        if (a[0]>0) q.push({l,mid-1});
        if (a[1]>0) q.push({mid+1,r});
    }
}
/*
int main()
{
    //find_best(100);

    return 0;
}
*/

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

prize.cpp: In function 'int find_best(int)':
prize.cpp:25:18: error: 'ask' was not declared in this scope
   25 |         int *a = ask(mid);
      |                  ^~~