CF1003C.Intense Heat

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 aia_i .

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=xyaiyx+1\frac{\sum \limits_{i = x}^{y} a_i}{y - 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][3, 4, 1, 2] and k=3k = 3 , we are interested in segments [3,4,1][3, 4, 1] , [4,1,2][4, 1, 2] and [3,4,1,2][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?

输入格式

The first line contains two integers nn and kk ( 1kn50001 \le k \le n \le 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 a1a_1 , a2a_2 , ..., ana_n ( 1ai50001 \le a_i \le 5000 ) — the temperature measures during given nn days.

输出格式

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: resres0<106|res - res_0| < 10^{-6} , where resres is your answer, and res0res_0 is the answer given by the jury's solution.

输入输出样例

  • 输入#1

    4 3
    3 4 1 2
    

    输出#1

    2.666666666666667
    
首页