Intense Heat(CodeForces 1003C)

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 temperaturefrom day xx to day yy, we calculate it as  (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 kkconsecutive 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 temperatureover 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 nn days.

Output

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

Your answer will be considered correct if the following condition holds: , where resresis your answer, and res0 is the answer given by the jury's solution.

Example

Input

4 3
3 4 1 2

Output

2.666666666666667

题解:很简单的一道前缀和的题,数据量不是很大,可以双重循环暴力,也可以用尺取做,复杂度均为n方。

代码如下:

#include <iostream>
#include <cstdio>
#include <stdlib.h>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <string.h>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <ctime>
#define maxn 1007
#define N 100005
#define INF 0x3f3f3f3f
#define PI acos(-1)
#define lowbit(x) (x&(-x))
#define eps 0.000000001
#define read(x) scanf("%d",&x)
#define put(x) printf("%d\n",x)
#define Debug(x) cout<<x<<" "<<endl
using namespace std;
typedef long long ll;


int main()
{
    int n,k;
    cin>>n>>k;
    int a[5555]= {0},sum[5555]= {0};
    cin>>a[1];
    sum[1]=a[1];
    for(int i=2; i<=n; i++)
    {
        cin>>a[i];
        sum[i]=sum[i-1]+a[i];
    }
    double ans=-1;
    for(int i=k; i<=n; i++)
        for(int j=0; j<=i-k; j++)
        {
            ans=max(ans,(double)(sum[i]*1.0-sum[j]*1.0)*1.0/(i-j)*1.0);
        }
    printf("%.15lf\n",ans);
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是程序代码: ```c #include <stdio.h> // 定义一个结构体来表示一个点 struct Point { float x; float y; float z; float intense; }; // 定义一个结构体来表示一个预测框 struct BoundingBox { float x_min; float y_min; float z_min; float x_max; float y_max; float z_max; }; // 将预选框内部的点的intense值设为0的函数 void zeroIntenseWithinBox(struct Point *pointCloud, int pointCount, struct BoundingBox box) { for (int i = 0; i < pointCount; i++) { struct Point point = pointCloud[i]; if (point.x >= box.x_min && point.x <= box.x_max && point.y >= box.y_min && point.y <= box.y_max && point.z >= box.z_min && point.z <= box.z_max) { point.intense = 0; pointCloud[i] = point; } } } int main() { // 假设这是一个点云文件,里面有10个点 struct Point pointCloud[10] = { { 0, 0, 0, 1 }, { 1, 1, 1, 2 }, { -1, -1, -1, 3 }, { 2, 2, 2, 4 }, { -2, -2, -2, 5 }, { 3, 3, 3, 6 }, { -3, -3, -3, 7 }, { 4, 4, 4, 8 }, { -4, -4, -4, 9 }, { 5, 5, 5, 10 } }; // 假设这是一个预测框 struct BoundingBox box = { -2, -2, -2, 2, 2, 2 }; // 调用zeroIntenseWithinBox函数将预选框内部的点的intense值设为0 zeroIntenseWithinBox(pointCloud, 10, box); // 打印修改后的点云文件 for (int i = 0; i < 10; i++) { struct Point point = pointCloud[i]; printf("%f %f %f %f\n", point.x, point.y, point.z, point.intense); } return 0; } ``` 这个程序会读入一个点云文件和一个预测框,然后将预测框内部的点的intense值设为0,最后输出修改后的点云文件。您需要将预测框和点云文件的具体参数替换到程序中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值