Submission #383357

# Submission time Handle Problem Language Result Execution time Memory
383357 2021-03-29T18:01:47 Z Iwanttobreakfree Rice Hub (IOI11_ricehub) C++17
Compilation error
0 ms 0 KB
#include "ricehub.h"
#include <vector>
#include <algorithm>
using namespace std;
int besthub(int R, int L, int X[], long long B){
	vector<int> v(R);
	for(int i=0;i<R;i++)v[i]=x[i];
	sort(v.begin(),v.end());
	int l=0,r=R,maxi=0;
	while(l<=r){
		int mid(r-l)/2+l;
		long long int i=mid+1,sum=0,c=0;
		while(i<R&&sum<B){
			sum+=v[i]-v[mid];
			i++;
			c++;
		}
		if(c>maxi){
			maxi=c;
			r=mid-1;
		}
		else l=mid+1;
	}
  return maxi;
}

Compilation message

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:7:27: error: 'x' was not declared in this scope
    7 |  for(int i=0;i<R;i++)v[i]=x[i];
      |                           ^
ricehub.cpp:11:15: error: expected ',' or ';' before '/' token
   11 |   int mid(r-l)/2+l;
      |               ^