Submission #963114

#TimeUsernameProblemLanguageResultExecution timeMemory
963114AmrRace (IOI11_race)C++17
Compilation error
0 ms0 KiB
#include "ricehub.h" #include<bits/stdc++.h> using namespace std; typedef long long ll; #define F first #define S second #define sz size() const int N = 1000; ll pre[N]; int besthub(int R, int L, int X[], long long B) { ll l = 1, r = R+1; for(int i = 0; i < R; i++) pre[i+1] = pre[i]+X[i]; while(l+1<r) { ll mid = (l+r)/2; for(int i = mid-1; i < R; i++) { ll po = i-mid/2; ll res = pre[i+1]-pre[po-1+1]-((mid+1)/2)*X[po+1]+(mid/2)*X[po+1]-(pre[po-1+1]-pre[i-mid+1]); if(res<=B) l = mid; else r = mid; } } return l; }

Compilation message (stderr)

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