Submission #224625

#TimeUsernameProblemLanguageResultExecution timeMemory
224625AASG쌀 창고 (IOI11_ricehub)C++11
Compilation error
0 ms0 KiB
#include "ricehub.h" #include <bits/stdc++.h> using namespace std; int besthub(int R, int L, int X[], long long B){ long mx=0; for(long i=1;i<=L;i++){ long au=0; long long ab=B; deque<long> rm; for(long l=0;l<R;l++){ rm.push_back(abs(i-R[l])); } sort(rm.begin(),rm.end()); for(long l=0;l<rm.size();l++){if(ab-rm[l]>=0){au++;ab=ab-rm[l];}else break;} mx=max(mx,au); } R=mx; return R; }

Compilation message (stderr)

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:11:27: error: invalid types 'int[long int]' for array subscript
     rm.push_back(abs(i-R[l]));
                           ^
ricehub.cpp:14:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    for(long l=0;l<rm.size();l++){if(ab-rm[l]>=0){au++;ab=ab-rm[l];}else break;}
                 ~^~~~~~~~~~