记录编号 280509 评测结果 AAAAAAAAAA
题目名称 [HZOI 2016]最佳序列 最终得分 100
用户昵称 GravatarHzoi_ 是否通过 通过
代码语言 C++ 运行时间 0.641 s
提交时间 2016-07-10 14:54:21 内存使用 0.22 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
	inline int getint(){
		static int __c,__x;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline long long getll(){
		static long long __x;
		static char __c;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline void putint(int __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
	inline void putll(long long __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
const int maxn=20010;
int n,l,r,b[maxn],anss,tmp;
double ans=0.0;
inline double mymax(const double& a,const double& b){
	if(a<b)return b;
	return a;
}
int i,d;
inline int MAIN(){
	freopen("bestseq.in","r",stdin);
	freopen("bestseq.out","w",stdout);
	b[0]=0;
	n=getint();
	l=getint();
	r=getint();
	for(i=1;i<=n;i++){
		b[i]=b[i-1]+getint();
	}
	for(d=l;d<=r;d++){
		tmp=0;
		for(i=1;i+d-1<=n;i++)
			tmp=max(tmp,b[i+d-1]-b[i-1]);
		ans=mymax(ans,(double)tmp/(double)d);
	}
	printf("%.4lf",ans);
	return 0;
}
int hzoier=MAIN();
int main(){;}
/*
3 2 3
6 2 8
Answer:
5.3333
*/