#include <bits/stdc++.h>
#include "ricehub.h"
using namespace std;
long long s[100005];
long long can(int l, int r){
int mid = (l + r) / 2;
if ((r - l) % 2) return s[r] + s[l - 1] - s[mid] - s[mid - 1];
return s[r] + s[l - 1] - 2 * s[mid];
}
int besthub(int R, int L, int X[], long long B){
int ans = 0;
for (int i = 1;i <= R;i++) s[i] = s[i - 1] + X[i - 1];
for (int i = 1;i <= R;i++){
int l = i, r = R, mid;
while (l != r){
mid = (l + r + 1) / 2;
if (can(l, mid) <= B) l = mid;
else r = mid - 1;
}
ans = max(ans, l - i + 1);
}
return ans;
}
// s[r] - s[mid] - s[mid] + s[l - 1]
// 2 5 14 33 67
// 9 + 19 = 28 + 12 + 43 = 93
// 100
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |