#include "ricehub.h"
#include <bits/stdc++.h>
using namespace std;
int besthub(int R, int L, int X[], long long B)
{
long long pre[R];
pre[0] = X[0];
for(int i = 1;i < R;i++){
pre[i] = pre[i-1] + X[i];
}
long long ans = 0;
for(int pos = 1;pos <= L;pos++){
int lr = lower_bound(X,X+R,pos) - X;
int rl = upper_bound(X,X+R,pos) - X;
int low = 0;
int high = 1000000;
//cout << pos << " " << lr << " " << rl << " ";
while(true){
if(low == high - 1) break;
int s = (low + high) / 2;
int ll = lr - s;
int rr = rl + s;
if(ll < 0 || rr > R){
high = s;
continue;
}
long long sum = 0ll;
sum += pre[lr-1];
if(ll > 0) sum -= pre[ll-1];
sum = s * pos - sum;
sum += pre[rr-1];
sum -= pre[rl-1];
sum -= s * pos;
//cout << "\n" << pos << " " << sum << " " << s << "wow\n";
if(sum > B){
high = s;
}
else{
low = s;
}
}
int ll = lr - low;
int rr = rl + low;
long long sum = 0ll;
sum += pre[lr-1];
if(ll > 0) sum -= pre[ll-1];
sum = low * pos - sum;
sum += pre[rr-1];
sum -= pre[rl-1];
sum -= low * pos;
long long nos = rr - ll;
ans = max(nos, ans);
if(ll > 0 && ans + X[ll-1] <= B){
ans = max(nos+1,ans);
}
if(rr < R && ans + X[rr] <= B){
ans = max(nos+1,ans);
}
//cout << low << "\n";
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
4 |
Correct |
2 ms |
384 KB |
Output is correct |
5 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
384 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
4 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
20 ms |
640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |