『ACM C++』 Codeforces | 1003C - Intense Heat

news/2024/7/7 21:29:12

今日兴趣新闻:

NASA 研制最强推进器,加速度可达每秒 40 公里,飞火星全靠它

链接:https://mbd.baidu.com/newspage/data/landingsuper?context=%7B"nid"%3A"news_11707429683828231737"%7D&n_type=0&p_from=1

 

 

------------------------------------------------题目----------------------------------------------------------

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=xyaiyx+1∑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 kkconsecutive 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?

Input

The first line contains two integers nn and kk (1kn50001≤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 a1a1, a2a2, ..., anan (1ai50001≤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 kkconsecutive days.

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

input

4 3
3 4 1 2

output

2.666666666666667

------------------------------------------------题目----------------------------------------------------------

 

(一) 题目分析:

    正常div3难度题型,难度处理可能是在求和统计上,题目大概含义就是:

    求n个数中至少连续k个数的平均值的最大值,如:n=4,k=3   给定的n个数是3 4 1 2,则求[3,4,1],[4,1,2],[3,4,1,2]三个区间的平均值的最大值。

    我用的方法比较简单,就是简单的取值求和,今天下午打完题之后这道题还特地搜了一下,发现还有其他的解法:前缀和 /  尺缩

 

(二)AC代码:

    因为代码比较简单,依旧不分块了~

#include<stdio.h>
#define max(a,b) (a>b) ? a : b
using namespace std;
int n,k,sum;
int temp[5001];
double ans,all;
int main()
{
    scanf("%d%d",&n,&k);
    ans = 0;
    for(int i = 1;i<=n;i++) scanf("%d",&temp[i]);

    for(int i = 1;i<=n;++i)
    {
        sum = 0;
        for(int j = i;j<=n;++j)
        {
            sum+= temp[j];
            if (j - i + 1 >= k) 
            {
                all = sum * 1.0 / (j - i + 1);
                if(all>ans) ans = all;
            }
        }
    }
    printf("%.15f\n",ans);
    return 0;
}

 

(三)AC截图:

 

 

(四)解后分析:

  贡献一个队内牛逼师兄高效率的代码:

  备注一下:前缀和

转载于:https://www.cnblogs.com/winniy/p/10468118.html


http://www.niftyadmin.cn/n/3620850.html

相关文章

其实这是一种生活方式【转载】

转载自公众号&#xff1a;心里话 原题为&#xff1a;你为什么越过越穷这篇文章的确特别的心灵鸡汤&#xff0c;但是每个人都有自己中意的生活方式&#xff0c;谁也不能按照自己的生活标准来要求别人&#xff0c;相比而言&#xff0c;这一篇更像是在向人们展示另一种生活姿态&a…

HDU5294 Tricks Device(最大流+最短路)

题目链接 一个无向图&#xff0c;走最短路从起点走到终点&#xff0c;问最少需要删除多少边使得其不能从起点走到终点&#xff0c;问最多删除多少点使得其能走到终点。 思路&#xff1a; 最大流最短路 先求出所有在最短路上的边&#xff0c;对这些边重建图。将其权值改为1&…

P3119 [USACO15JAN]Grass Cownoisseur G(tarjan+dp)

LINK 先缩点,在DAGDAGDAG上跑最长路可以得到dis[v]dis[v]dis[v] 表示111号点的联通分量到vvv连通分量最多走多少草坪 当走到uuu点时使用反向机会走到点vvv,其中vvv一定是能到达点111所属的连通分量的 所以以111所在联通分量为起点,终点分别跑一次最长路 然后枚举那个中转点…

训练总结 18.7.18 暑假训练第三天

今日完成题量两道。 两道题&#xff0c;一道线段树&#xff0c;一道网络流。线段树那道题有点迷&#xff0c;RE了好几次&#xff0c;线段树一直都应用不大熟练。网络流今天刚补的知识点&#xff0c;勉强看懂&#xff0c;应用相当不熟练&#xff0c;今天的题目最大流最短路&…

CodeSmith 二、多模板按目录树批量自动生成代码

通过调用指定目录下的所有模板&#xff0c;逐一按照数据表生成独立的代码文件。支持多模板调用、支持所有数据表生成或批量指定多个生成、支持自动的文件目录结构、支持代码文件格式化命名等。 背景&#xff1a;最近一个新项目一高兴选了Mysql 8&#xff0…

康威定律-软件之道:软件开发争议问题剖析

每个架构师都应该研究下康威定律 http://36kr.com/p/5042735.html 软件之道:软件开发争议问题剖析((美)AndyOram) http://baike.baidu.com/view/11495670.htm

斯坦福机器学习视频笔记 Week4 Week5 神经网络 Neural Networks

神经网络是一种受大脑工作原理启发的模式。 它在许多应用中广泛使用&#xff1a;当您的手机解释并理解您的语音命令时&#xff0c;很可能是神经网络正在帮助理解您的语音; 当您兑现支票时&#xff0c;自动读取数字的机器也使用神经网络。 Non-linear Classification 当输入数据…

如何利用几何画板解方程

解方程的方法不止一种&#xff0c;可以用正常方法解&#xff0c;也可以用公式法或一些较好的计算器&#xff0c;但是这两种方法都比较繁琐&#xff0c;下面介绍如何利用几何画板解方程的方法。 具体的操作步骤如下&#xff1a; 步骤一 新建一个网格。打开几何画板软件&#xff…