이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
ll get(int x, int y, int* a, ll* b) {
return ((((x + y) >> 1) - x + 1) - (y - ((x + y) >> 1))) * a[(x + y) >> 1] - (b[(x + y) >> 1] - (x ? b[x - 1] : 0)) + (b[y] - b[(x + y) >> 1]);
}
int besthub(int r, int l, int* x, ll b) {
ll a[r], sum;
a[0] = x[0];
for (int i = 1; i < r; i++) a[i] = a[i - 1] + x[i];
int i = 0, ans = 0;
for (int j = 0; j < r; j++) {
sum = get(i, j, x, a);
while (sum > b) i++, sum = get(i, j, x, a);
ans = std::max(ans, j - i + 1);
}
return ans;
}
# | 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... |