Submission #206953

#TimeUsernameProblemLanguageResultExecution timeMemory
206953peuchRice Hub (IOI11_ricehub)C++17
0 / 100
1093 ms764 KiB
#include "ricehub.h" #include<bits/stdc++.h> using namespace std; vector<long long> auxVec; int besthub(int R, int L, int X[], long long B) { int ans = 0; for(int coord = 1; coord <= L; coord++){ int aux = 0; auxVec.clear(); while(X[aux] < coord && aux < R){ auxVec.push_back(coord - X[aux]); aux++; } while(aux < R){ auxVec.push_back(X[aux]); aux++; } sort(auxVec.begin(), auxVec.end()); for(int i = 1; i < auxVec.size(); i++){ auxVec[i] += auxVec[i - 1]; } ans = max(ans, (int)(lower_bound(auxVec.begin(), auxVec.end(), B) - auxVec.begin())); } return ans; }

Compilation message (stderr)

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:22:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int i = 1; i < auxVec.size(); i++){
                  ~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...