답안 #584690

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
584690 2022-06-27T20:02:31 Z Kanaifu 쌀 창고 (IOI11_ricehub) C++17
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++)
    {
        long long add = X[i];
        prefix[i] = prefix[i-1] + add;
    }
    long long cost = 0;
    int leng = 1;
    long long l = 0, r = 1;
    while (r < R)
    {
        long long med = (l+r)/2;
        long long val = X[med];
        cost = 0;
        if (med != l)
        {
            cost += (val)*(med-l)-prefix[med-1];
        }
        if (med != r)
        {
            cost += prefix[r] - prefix[med] - (r-med)*(val);
        }
        if (cost <= B)
        {
            leng = max(leng, (int)(r - l + 1));
            r++;
        }
        else
        {
            l++;
            r++;
        }
    }
    return leng;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 980 KB Output is correct
2 Incorrect 1 ms 1080 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 980 KB Output is correct
2 Correct 1 ms 980 KB Output is correct
3 Correct 1 ms 980 KB Output is correct
4 Correct 1 ms 980 KB Output is correct
5 Incorrect 1 ms 980 KB Output isn't correct
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 1236 KB Output isn't correct
2 Halted 0 ms 0 KB -