이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "ricehub.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long i64;
int besthub(int R, int L, int X[], i64 B) {
  vector<i64> pre(R), suf(R);
  pre[0] = suf.back() = 0;
  for (int i = 1; i < R; i++) {
    pre[i] = pre[i - 1] + (X[i] - X[i - 1]);
  }
  for (int i = R - 2; ~i; i--) {
    suf[i] = suf[i + 1] + (X[i + 1] - X[i]);
  }
  vector<i64> dp_pre(R), dp_suf(R);
  dp_pre[0] = dp_suf.back() = 0;
  for (int i = 1; i < R; i++) {
    dp_pre[i] = dp_pre[i - 1] + 1LL * i * (X[i] - X[i - 1]);
  }
  for (int i = R - 2; ~i; i--) {
    const int T = R - i - 1;
    dp_suf[i] = dp_suf[i + 1] + 1LL * T * (X[i + 1] - X[i]);
  }
  auto range_sum = [&](const vector<i64> &dp, const vector<i64> &sum, int lo, int hi, bool is_right) -> long long {
    if (is_right) {
      i64 a = dp[lo] - dp[hi];
      i64 b = 1LL * (R - hi - 1) * (sum[lo] - sum[hi]);
      return a - b;
    }
    i64 a = dp[hi] - dp[lo];
    i64 b = 1LL * lo * (sum[hi] - sum[lo]);
    return a - b;
  };
  auto ok = [&](int how_many) {
    for (int i = 0; i <= R - how_many; i++) {
      const int lo = i;
      const int hi = i + how_many - 1;
      const int mid = lo + (hi - lo) / 2;
      i64 dist = 0;
      // Right side
      dist += range_sum(dp_suf, suf, mid, hi, true);
      // Left side
      dist += range_sum(dp_pre, pre, lo, mid, false);
      if (dist <= B) return true;
    }
    return false;
  };
  int lo = 0, hi = R + 7;
  while(lo < hi) {
    const int mid = lo + (hi - lo) / 2;
    if (!ok(mid)) hi = mid;
    else lo = mid + 1;
  }
  return hi - 1;
}
| # | 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... |