# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
556301 | Dan4Life | 쌀 창고 (IOI11_ricehub) | C++17 | 14 ms | 1424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "ricehub.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
ll pref[100010];
ll sum(int i, int j){ return pref[j+1]-pref[i]; }
int besthub(int n, int m, int a[], ll k)
{
/*
for(int i = 0; i < n; i++){
int j = i;
while(i<n and a[i]==a[i+1]) i++;
v.pb({a[j],j-i+1});
}
n = (int)v.size();*/
pref[0] = 0;
for(int i = 0; i < n; i++)
pref[i+1] = pref[i]+(ll)a[i];//v[i].second;
int l = 1, r = n;
while(l<r){
int mid = (l+r+1)/2; ll mn = (ll)4e18;
for(int i = 0; i <= n-mid; i++){
int j = i+mid-1; int med = (i+j)/2; int x = med;
ll sum1 = (ll)a[med]*(med-i+1)-sum(i,med);
ll sum2 = sum(med+1,j)-a[med]*(j-med);
mn = min(mn, sum1+sum2);
}
if(mn<=k) l=mid;
else r = mid-1;
}
return l;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |