This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include <ricehub.h>
#define DEBUG 0
using namespace std;
int cost(int R, int X[], int pos, long long B) {
vector <int> truckload;
for(int i = 0; i < R; i++) {
truckload.push_back(abs(X[i] - pos));
}
sort(truckload.begin(), truckload.end());
long long sum = 0;
for(int i = 0; i < R; i++) {
if(sum + truckload[i] > B) {
return i;
}
sum += truckload[i];
}
return R;
}
int besthub(int R, int L, int X[], long long B) {
int l = 0, r = L, ans = 0;
while(l <= r) {
int mid = (l + r) / 2;
int cost1 = cost(R, X, mid, B);
int l2 = l + 1, r2 = r, pos2 = r;
while(l2 <= r2) {
int mid2 = (l2 + r2) / 2;
int cost2 = cost(R, X, mid2, B);
if(cost1 == cost2) {
l2 = mid2 + 1;
}
else {
r2 = mid2 - 1;
pos2 = min(pos2, mid2);
}
}
int cost2 = cost(R, X, pos2, B);
if(cost1 > cost2) {
r = mid - 1;
ans = max(ans, cost1);
}
else {
l = mid + 1;
ans = max(ans, cost2);
}
}
return ans;
}
// int main() {
// ios_base::sync_with_stdio(0);
// cin.tie(0);
// int r, l, b;
// cin >> r >> l >> b;
// int x[l];
// for(int i = 0; i < r; i++) {
// cin >> x[i];
// }
// cout << besthub(r, l, x, b);
// return 0;
// }
/*
5 20 6
1 2 10 12 14
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |