# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1027101 | kkkkkkkk | 쌀 창고 (IOI11_ricehub) | C++14 | 13 ms | 4196 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> v;
long long B;
long long pref_sum[100005];
bool proveri(int k) {
for (int i=0;i<=v.size()-k;i++) {
int poz=(i+i+k)/2;
int hub=v[poz];
long long zbir_levo=hub*(poz-i)-(pref_sum[poz]-pref_sum[i]+v[i]-v[poz]);
long long zbir_desno=(pref_sum[i+k-1]-pref_sum[poz]+v[poz])-hub*(i+k-poz);
if (zbir_levo+zbir_desno<=B) return true;
}
return false;
}
int besthub(int R, int L, int a[], long long b) {
B=b;
for (int i=0;i<R;i++)
v.push_back(a[i]);
pref_sum[0]=a[0];
for (int i=1;i<R;i++)
pref_sum[i]=pref_sum[i-1]+a[i];
int l=1, r=R+1;
while (l+1<r) {
int mid=(l+r)/2;
if (proveri(mid)) l=mid;
else r=mid;
}
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... |