제출 #516271

#제출 시각아이디문제언어결과실행 시간메모리
516271Jesus쌀 창고 (IOI11_ricehub)C++14
컴파일 에러
0 ms0 KiB
#include<iostream> #include "besthub.h" int besthub(int R,int L,int X[], int B){ int izq=0; int der=0; int maxim=0; long long int costo=0; int i=0,j=0; int z=0; while(i<R){ if(j==R-1||costo>B) { if(izq<der){ z=(i+j)/2; costo-=X[z+1]-X[z-izq]; costo+=(X[z+1]-X[z])*(izq); costo-=(X[z+1]-X[z])*(der); izq++; der--; } i++; izq--; } else{ z=(i+j)/2; if(izq<der){ costo+=X[z+1+der]-X[z+1]; costo+=(X[z+1]-X[z])*izq; costo-=(X[z+1]-X[z])*(der-1); } else{ costo+=X[z+der+1]-X[z]; } j++; der++; } if(costo<=B) maxim=max(maxim,der+izq+1); } return maxim; }

컴파일 시 표준 에러 (stderr) 메시지

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