Submission #108002

# Submission time Handle Problem Language Result Execution time Memory
108002 2019-04-26T18:36:06 Z reda The Big Prize (IOI17_prize) C++14
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#include "prize.h"

using namespace std;
int find_best(int n)
{
    int mid = n/2;
    int arr[2]=ask(mid);
    if(arr[0]==0 && arr[1]==0)return mid;
    else{
        if(arr[0]>arr[1])
        {
            return find_best(mid);

        }
        else return find_best(mid+n/2);
    }
}

Compilation message

prize.cpp: In function 'int find_best(int)':
prize.cpp:8:19: error: array must be initialized with a brace-enclosed initializer
     int arr[2]=ask(mid);
                ~~~^~~~~