Submission #927208

# Submission time Handle Problem Language Result Execution time Memory
927208 2024-02-14T12:13:10 Z vjudge1 Hotter Colder (IOI10_hottercolder) C++11
Compilation error
0 ms 0 KB
#include "/home/ioi2010-contestant/hottercolder/hottercolder.h"
using namespace std;

void HC(int n) {
    int l = 1, r = n, mid;
    int last = n;
    Guess(n);
    while(true) {
        mid = (l + r) >> 1;
        int g = Guess(mid);
        if(g == 1) {
            r = mid;
        } else if(g == -1) {
            l = mid;
        } else {
            cout << (last - mid) / 2;
            return;
        }
        last = mid;
    }
}

Compilation message

hottercolder.cpp:1:10: fatal error: /home/ioi2010-contestant/hottercolder/hottercolder.h: No such file or directory
    1 | #include "/home/ioi2010-contestant/hottercolder/hottercolder.h"
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.