Submission #89983

#TimeUsernameProblemLanguageResultExecution timeMemory
89983Retro3014Boxes with souvenirs (IOI15_boxes)C++17
Compilation error
0 ms0 KiB
#include "boxes.h" #include <algorithm> using namespace std; #define MAX_N 10000000 typedef long long ll; ll costf[MAX_N+1], coste[MAX_N+1]; ll answer; long long delivery(int N, int K, int L, int p[]) { for(int i=0; i<N; i++){ costf[i]=2*(ll)p[i]+(i<K?0:costf[i-K]); } for(int i=N-1; i>=0; i--){ coste[i]=(L-p[i])*2+(i>=N-K?0:coste[i+K]); } answer=min(costf[N-1], coste[0]); for(int i=0; i<N-1; i++){ answer=min(answer, costf[i]+coste[i+1]); if(i+K+1<N){ answer = min(answer, costf[i]+coste[i+K+1]+(ll)L; } } return answer; }

Compilation message (stderr)

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:25:52: error: expected ')' before ';' token
    answer = min(answer, costf[i]+coste[i+K+1]+(ll)L;
                                                    ^