Submission #134537

#TimeUsernameProblemLanguageResultExecution timeMemory
13453720160161simoneBoxes with souvenirs (IOI15_boxes)C++14
Compilation error
0 ms0 KiB
#include "boxes.h" #include <bits/stdc++.h> #define N 100000010 using namespace std; int mi[N]; long long delivery(int N, int K, int L, int p[]) { for(int i=0;i<N;i++){ mi[i]=min(abs(L-p[i]),abs(p[i]))*2; } sort(mi+1,mi+1+N); int ans=0,val=0,k=0; for(int i=1;i<=N;i++) { k++; val=max(mi[i],val); if(k==K) { ans+=val; val=0; k=0; } } ans+=val; }

Compilation message (stderr)

boxes.cpp:3:11: error: expected ',' or '...' before numeric constant
 #define N 100000010
           ^
boxes.cpp:6:24: note: in expansion of macro 'N'
 long long delivery(int N, int K, int L, int p[]) 
                        ^
boxes.cpp: In function 'long long int delivery(int)':
boxes.cpp:9:20: error: 'L' was not declared in this scope
      mi[i]=min(abs(L-p[i]),abs(p[i]))*2;  
                    ^
boxes.cpp:9:22: error: 'p' was not declared in this scope
      mi[i]=min(abs(L-p[i]),abs(p[i]))*2;  
                      ^
boxes.cpp:17:9: error: 'K' was not declared in this scope
   if(k==K) 
         ^
boxes.cpp:25:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^