#include "ricehub.h"
#include<bits/stdc++.h>
using namespace std;
int besthub(int r, int l, int x[], long long b) {
int MAX = 0;
for(int i = 1;i<r;i++) {
int c = 0;
long long cost = 0;
int p1 = 0, p2 = MAX;
while(p1 < r and p2 <= r) {
if(cost <= b) {
c = max(p2 - p1, c);
p2++;
if(p2 <= r)
cost+=abs(x[p2-1] - x[i]);
}
else {
cost-=abs(x[p1]-x[i]);
p1++;
}
}
MAX = max(c, MAX);
}
return MAX;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
618 ms |
352 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |