Submission #738472

#TimeUsernameProblemLanguageResultExecution timeMemory
738472Elvin_FritlThe Big Prize (IOI17_prize)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
#include "prize.h"

int find_best(int n) {
	int l=0,r=n-1;
	while(l<=r){
        int mid=(l+r)>>1;
        int a[2]=ask(mid);
        if(a[0] == a[1] && a[0] == 0){
            return mid;
        }
        if(a[0]==0){
            l=mid+1;
        }
        else{
            r=mid-1;
        }
	}
	return 0;
}

Compilation message (stderr)

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