# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
93996 | fjzzq2002 | 쌀 창고 (IOI11_ricehub) | C++14 | 222 ms | 2664 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "ricehub.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll qz[123456];
int besthub(int N,int L_,int X[],ll B)
{
int ans=0;
for(int i=0;i<N;++i)
qz[i+1]=qz[i]+X[i];
for(int i=0;i<N;++i)
{
int u=X[i];
int L=0,R=1.01e9;
while(L<R)
{
int M=(L+R+1)>>1;
int u1=lower_bound(X,X+N,u-M)-X,
u2=lower_bound(X,X+N,u+M+1)-X-1;
//[u1,i] [i,u2]
ll co=(i-u1+1)*ll(u)-(qz[i+1]-qz[u1])
+(qz[u2+1]-qz[i])-(u2-i+1)*ll(u);
int cn=u2-u1+1;
if(co>B) R=M-1; else L=M;
}
{
int M=L;
int u1=lower_bound(X,X+N,u-M)-X,
u2=lower_bound(X,X+N,u+M+1)-X-1;
//[u1,i] [i,u2]
Compilation message (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... |