Submission #316069

#TimeUsernameProblemLanguageResultExecution timeMemory
316069MrDominoThe Big Prize (IOI17_prize)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "prize.h"

using namespace std;

int find_best(int n) {
  /// subtask 1
  int l = 0, r = n - 1;
  while (l <= r) {
    int m = (l + r) / 2;
    vector<int> v = ask(m);
    if (v[0] == 0 && v[1] == 0) {
      return i;
    }
    if (v[0] == 1) {
      r = m - 1;
    } else {
      l = m + 1;
    }
  }
  assert(0);
}

Compilation message (stderr)

prize.cpp: In function 'int find_best(int)':
prize.cpp:13:14: error: 'i' was not declared in this scope
   13 |       return i;
      |              ^