Intense Heat(CF-1003C)

Problem Description

The heat during the last few days has been really intense. Scientists from all over the Berland study how the temperatures and weather change, and they claim that this summer is abnormally hot. But any scientific claim sounds a lot more reasonable if there are some numbers involved, so they have decided to actually calculate some value which would represent how high the temperatures are.

Mathematicians of Berland State University came up with a special heat intensity value. This value is calculated as follows:

Suppose we want to analyze the segment of nn consecutive days. We have measured the temperatures during these nn days; the temperature during ii-th day equals aiai.

We denote the average temperature of a segment of some consecutive days as the arithmetic mean of the temperature measures during this segment of days. So, if we want to analyze the average temperature from day xx to day yy, we calculate it as ∑i=xyaiy−x+1 (note that division is performed without any rounding). The heat intensity value is the maximum of average temperatures over all segments of not less than kk consecutive days. For example, if analyzing the measures [3,4,1,2] and k=3, we are interested in segments [3,4,1], [4,1,2] and [3,4,1,2] (we want to find the maximum value of average temperature over these segments).

You have been hired by Berland State University to write a program that would compute the heat intensity value of a given period of days. Are you up to this task?

Input

The first line contains two integers nn and kk (1≤k≤n≤5000) — the number of days in the given period, and the minimum number of days in a segment we consider when calculating heat intensity value, respectively.

The second line contains nn integers a1, a2, ..., an (1≤ai≤5000) — the temperature measures during given n days.

Output

Print one real number — the heat intensity value, i. e., the maximum of average temperatures over all segments of not less than kk consecutive days.

Your answer will be considered correct if the following condition holds: |res−res0|<10−6, where resres is your answer, and res0 is the answer given by the jury's solution.

Examples

Input

4 3
3 4 1 2

Output

2.666666666666667

题意:给出连续 n 的温度为 ai,用 x,y 表示任意从 x 天开始,到 y 天结束,k 表示是最短的连续天数,定义平均热度:y-x+1>=k,求最大的的平均热度

思路:使用前缀和,处理出前 i 天的温度和,即求出某个区间的和,再暴力枚举区间

Source Program

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<string>
#include<cstdlib>
#include<queue>
#include<set>
#include<map>
#include<stack>
#include<ctime>
#include<vector>
#define INF 0x3f3f3f3f
#define PI acos(-1.0)
#define N 10000005
#define MOD 123
#define E 1e-6
using namespace std;
double a[N],sum[N];
int main()
{
    int n,k;
    cin>>n>>k;

    sum[0]=0;
    double maxx=-INF;
    for(int i=1;i<=n;i++)
    {
        cin>>a[i];
        sum[i]=sum[i-1]+a[i];//记录前i天的温度和
        if(i>=k)
        {
            maxx=max(maxx,sum[i]/(i*1.0));
            for(int j=1;i-j>=k;j++)//枚举区间
                maxx=max(maxx,(sum[i]-sum[j])/((i-j)*1.0));
        }
    }
    printf("%.15f\n",maxx);//注意输出保留的小数位数
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Anaconda是一种开源的Python和R编程语言的发行版,是针对数据科学家和大数据处理方案设计的一款专业工具,包含了常用的数据分析和科学计算的模块、库和工具。而conda则是Anaconda所使用的一个软件包管理系统,可以管理Python、R和其他语言的库及其依赖关系。 而docx是一种微软Word文档的文件格式,它是一种基于XML的文件格式,使用较简单的标签以及样式定义来存储文档内容。因此,Anaconda-conda docx是指使用Anaconda中的conda包管理器安装docx相关包,并在Python编程中使用docx库完成对Word文档的处理。 在使用Anaconda-conda docx之前,需要先安装Anaconda,并配置好Python环境。之后,在命令行中使用conda命令安装docx库,例如: ``` conda install -c conda-forge python-docx ``` 安装完成后,便可以在Python中导入docx库,并使用其提供的API来处理Word文档。例如,可以使用docx库创建一个新的Word文档,插入段落和表格,并保存文档,代码如下: ```python from docx import Document from docx.shared import Inches document = Document() document.add_heading('Document Title', 0) p = document.add_paragraph('A plain paragraph having some ') p.add_run('bold').bold = True p.add_run(' and some ') p.add_run('italic.').italic = True document.add_heading('Heading, level 1', level=1) document.add_paragraph('Intense quote', style='Intense Quote') document.add_paragraph( 'first item in unordered list', style='List Bullet' ) document.add_paragraph( 'first item in ordered list', style='List Number' ) document.add_picture('image.png', width=Inches(1.25)) records = ( (3, '101', 'Spam'), (7, '422', 'Eggs'), (4, '631', 'Spam, spam, eggs, and spam') ) table = document.add_table(rows=1, cols=3) hdr_cells = table.rows[0].cells hdr_cells[0].text = 'Qty' hdr_cells[1].text = 'Id' hdr_cells[2].text = 'Desc' for qty, id, desc in records: row_cells = table.add_row().cells row_cells[0].text = str(qty) row_cells[1].text = id row_cells[2].text = desc document.save('demo.docx') ``` 这个示例代码将生成一个名为demo.docx的Word文档,其中包含了标题、段落、引用、图像、列表以及表格等元素。通过使用Anaconda-conda docx,我们可以方便地处理Word文档,实现复杂的自动化任务,以提高工作效率。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值