#include <bits/stdc++.h>
#include "ricehub.h"
using namespace std;
int S(int X[], int h, int l, int r)
{
int sum = 0;
for(int i = l; i<=r; i++)
sum = sum + abs(h-X[l]);
return sum;
}
int besthub(int R, int L, int X[], long long B)
{
//int l = 0, r = R-1;
int res = 0;
for(int k = 0; k<R; k++)
{
int l = 0;
int r = k;
while(r<R)
{
int mid = (l+r)/2;
int h = X[mid];
int curr = S(X, h, l, r);
if(curr<=B)
res = max(res, k);
}
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1097 ms |
204 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1086 ms |
204 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1090 ms |
204 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1088 ms |
460 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |