이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
//IBOW
#define Task "IOI11_RICEHUB"
#define DB(X) { cerr << #X << " = " << (X) << '\n'; }
#define DB1(A, _) { cerr << #A << "[" << _ << "] = " << (A[_]) << '\n'; }
#define DB2(A, _, __) { cerr << #A << "[" << _ << "][" << __ << "] = " << (A[_][__]) << '\n'; }
#define DB3(A, _, __, ___) { cerr << #A << "[" << _ << "][" << __ << "][" << ___ << "] = " << (A[_][__][___]) << '\n'; }
#define pb push_back
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
#define eb emplace_back
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
typedef pair<ii, int> iii;
const int N = 2e5 + 10;
const int inf = 2e9 + 10;
const ll INF = 2e18 + 10;
const int MOD = 1e9 + 7;
bool ok(int va, int n, int l, int x[], ll B, int pre[])
{
    ll mn = INF;
    for (int i = va; i <= n; ++i)
    {
        int rr = i;
        int ll = i - va + 1;
        int median = (rr + ll) / 2;
        for (int j = median - 1; j <= median + 1; ++j)
        {
            mn = min(mn, x[j] * 1LL * (j - ll + 1) - (pre[j] - pre[ll - 1]) + (pre[rr] - pre[j]) - x[j] * 1LL * (rr - j));
        }
    }
    return mn <= B;
}
int besthub(int n, int l, int x[], ll B)
{
    int pre[100010] = {};
    for (int i = 1; i <= n; ++i) pre[i] = pre[i - 1] + x[i];
    int L = 1, R = n, ans = -1;
    while (L <= R)
    {
        int mid = (L + R) / 2;
        if (ok(mid, n, l, x, B, pre))
            L = mid + 1, ans = mid;
        else R = mid - 1;
    }
    return ans;
//    return 0;
}
| # | 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... |