Submission #584646

# Submission time Handle Problem Language Result Execution time Memory
584646 2022-06-27T18:25:05 Z Kanaifu Rice Hub (IOI11_ricehub) C++14
0 / 100
3 ms 1236 KB
#include <bits/stdc++.h>
#include "ricehub.h"

using namespace std;

int besthub(int R, int L, int X[], long long B)
{
    long long prefix[100001];
    prefix[0] = X[0];
    for (int i=1; i<R; i++)
    {
        prefix[i] = prefix[i-1] + X[i];
    }
    long long cost = 0;
    int leng = 0;
    int l = 0, r = 0;
    while (r < R)
    {
        int med = (l+r)/2;
        cost = X[med]*(l-med)-prefix[med-1];
        cost += prefix[r] - prefix[med] - (r-med)*X[med];
        if (cost <= B)
        {
            leng = max(leng, r - l + 1);
            r++;
        }
        else
        {
            l++;
            r++;
        }
    }
    return leng;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 1080 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 1236 KB Output isn't correct
2 Halted 0 ms 0 KB -