# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
655639 | horiseun | 쌀 창고 (IOI11_ricehub) | C++11 | 1098 ms | 41884 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <climits>
using namespace std;
#define ll long long
vector<ll> pref;
ll calc(int length, int x[], int r) {
ll val = LLONG_MAX;
for (int i = length - 1; i < r; i++) {
int start = i - length + 1;
int pos = (i + i - length + 1) / 2;
val = min(val, (pos - start) * x[pos] - (pref[pos] - pref[start]) + (pref[i + 1] - pref[pos + 1]) - (i - pos) * x[pos]);
}
return val;
}
int besthub(int r, int l, int x[], ll b) {
pref.push_back(0);
for (int i = 0; i < r; i++) {
pref.push_back(pref[i] + x[i]);
}
int low = 0, upp = r + 1;
while (low + 1 != upp) {
int mid = (low + upp) / 2;
if (calc(mid, x, r) <= b) low = mid;
컴파일 시 표준 에러 (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... |