# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335942 | aryan12 | 쌀 창고 (IOI11_ricehub) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "ricehub.h"
using namespace std;
int besthub(int r, int l, int x[], int b) {
int ans = 1;
for(int i = 2; i <= r; i++) {
int left = 1, right = i, best = r;
int mid;
while(left <= right) {
mid = (left + right) / 2;
int FieldSituated = (mid + i) / 2, cost = 0;
//cout << "left = " << left << ", right = " << right << ", mid = " << mid << ", FieldSituated = " << FieldSituated << ", cost = ";
for(int j = mid; j <= i; j++) {
cost += (abs(x[j] - x[FieldSituated]));
}
//cout << cost << endl;
if(cost <= b) {
right = mid - 1;
best = mid;
}
else {
left = mid + 1;
}
}
ans = max(ans, i - best + 1);
}
return ans;
}
/*int main() {
cout << "Input the number of rice fields" << endl;
int r;
cin >> r;
cout << "Input the maximum coordinate" << endl;
int l;
cin >> l;
cout << "Input r numbers, denoting the rice fields" << endl;
int x[r + 1];
for(int i = 1; i <= r; i++) {
cin >> x[i];
}
cout << "Input the budget" << endl;
int b;
cin >> b;
cout << besthub(r, l, x, b) << endl;
}
*/