답안 #411183

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
411183 2021-05-24T14:15:04 Z LouayFarah 쌀 창고 (IOI11_ricehub) C++17
0 / 100
435 ms 356 KB
#include <bits/stdc++.h>
#include "ricehub.h"
using namespace std;
 
long long S(int X[], int h, int l, int r)
{
    long long sum = 0;
    for(int i = l; i<r; i++)
        sum = sum + abs(h-X[l]);
    return sum;
}

int besthub(int R, int L, int X[], long long B)
{
    //int l = 0, r = R-1;
    int res = 0;
    for(int k = 1; k<=R; k++)
    {
        int l = 0;
        int r = k;
        while(r<=R)
        {
            int mid = (l+r)/2;
            int h = X[mid];
            long long curr = S(X, h, l, r);
            if(curr<=B)
                res = max(res, k);
            r++, l++;
        }
    }
    return res;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Incorrect 1 ms 204 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Incorrect 1 ms 204 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 435 ms 356 KB Output isn't correct
2 Halted 0 ms 0 KB -