답안 #229541

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
229541 2020-05-05T00:39:54 Z thtsshz_bgwrswh 쌀 창고 (IOI11_ricehub) C++17
0 / 100
7 ms 640 KB
#pragma GCC optimize("Ofast")
#include<stdio.h>
#include<algorithm>
using namespace std;
long long pre[100005]={0};
int besthub(int R,int L,int *X,long long B){
	int i,j=-1,ans=0;
	pre[0]=X[0];
	for(i=1;i<R;i++)
		pre[i]=pre[i-1]+X[i];
	for(i=0;i<R;i++){
		while(j+1<R&&pre[j+1]-pre[(j+1+i)/2]-(long long)X[(j+1+i)/2]*(j+1-(j+1+i)/2)+(long long)X[(j+1+i)/2]*((j+1+i)/2-i+1)-pre[(j+1+i)/2]-(i?pre[i-1]:0)<=B)
			j++;
		ans=max(ans,j-i+1);
	}	
	return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 640 KB Output isn't correct
2 Halted 0 ms 0 KB -