Submission #365907

#TimeUsernameProblemLanguageResultExecution timeMemory
365907wind_reaperHotter Colder (IOI10_hottercolder)C++17
Compilation error
0 ms0 KiB
#include "grader.h" #include "hottercolder.h" #include <bits/stdc++.h> using namespace std; int HC(int n){ array<int, 2> lim; lim[0] = 1, lim[1] = n; Guess(lim[0]); int turn = 1; while(lim[0] < lim[1]){ int mid = (lim[0] + lim[1]) >> 1; int r = Guess(lim[turn]); if(r == 1){ if(turn == 0) lim[1] = mid - 1; else lim[0] = mid + 1; } else if(r == -1){ if(turn == 0) lim[0] = mid + 1; else lim[1] = mid - 1; } turn ^= 1; } return lim[0]; }

Compilation message (stderr)

hottercolder.cpp:2:10: fatal error: hottercolder.h: No such file or directory
    2 | #include "hottercolder.h"
      |          ^~~~~~~~~~~~~~~~
compilation terminated.