답안 #224626

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
224626 2020-04-18T14:06:17 Z AASG 쌀 창고 (IOI11_ricehub) C++11
컴파일 오류
0 ms 0 KB
#include "ricehub.h"
#include <bits/stdc++.h>
using namespace std;
int besthub(int R, int L, int X[], long long B){
    int mx=0;
  for(int i=1;i<=L;i++){
        int au=0;
        long long ab=B;
        deque<int> rm;
   for(int l=0;l<R;l++){
    rm.push_back(abs(i-R[l]));
   }
   sort(rm.begin(),rm.end());
   long tm=rm.size();
   for(int l=0;l<tm;l++){if(ab-rm[l]>=0){au++;ab=ab-rm[l];}else break;}
    mx=max(mx,au);
  }
  R=mx;
  return R;
}

Compilation message

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:11:27: error: invalid types 'int[int]' for array subscript
     rm.push_back(abs(i-R[l]));
                           ^