Submission #224519

#TimeUsernameProblemLanguageResultExecution timeMemory
224519T0p_Rice Hub (IOI11_ricehub)C++14
Compilation error
0 ms0 KiB
#include "ricehub.h" int besthub(int R, int L, int X[], long long B) { int ans = 0; for(int i=0 ; i<R ; i++) { long long temp = B; int l=i-1, r=i+1, now = 0; while(l >= 0 && r < R) { if(temp < X[i] - X[l] && temp < X[r] - X[i]) break ; if(X[i] - X[l] <= X[r] - X[i]) { temp -= (X[i] - X[l]); l--; now++; } else { temp -= (X[r] - X[i]); r++; now++; } } while(l >= 0) { if(temp < X[i] - X[l]) break ; temp -= (X[i] - X[l]); l--; now++; } while(r < R) { if(temp < X[r] - X[i]) break ; temp -= (X[r] - X[i]); r++; now++; } ans = max(ans, now); } return ans; }

Compilation message (stderr)

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:40:9: error: 'max' was not declared in this scope
   ans = max(ans, now);
         ^~~