| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 411222 | LouayFarah | Rice Hub (IOI11_ricehub) | C++14 | 1086 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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[i]);
return sum;
}
int besthub(int R, int L, int X[], long long B)
{
int res = 0;
for(int l = 0; l<R; l++)
{
for(int r = l; r<R; r++)
{
int h = X[(l+r)/2];
long long curr = S(X, h, l, r);
if(curr <=B)
res = max(res, r-l+1);
}
}
return res;
}| # | 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... | ||||
