博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
『ACM C++』 Codeforces | 1003C - Intense Heat
阅读量:5150 次
发布时间:2019-06-13

本文共 3511 字,大约阅读时间需要 11 分钟。

今日兴趣新闻:

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 33 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
#define max(a,b) (a>b) ? a : busing 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

你可能感兴趣的文章
Timer-triggered memory-to-memory DMA transfer demonstrator
查看>>
《架构之美》阅读笔记六
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
64位主机64位oracle下装32位客户端ODAC(NFPACS版)
查看>>
获取国内随机IP的函数
查看>>
C/C++的64位整型
查看>>
今天第一次写博客
查看>>
asp.net时间类-格式-方法应用
查看>>
win7分盘(复制)
查看>>
江城子·己亥年戊辰月丁丑日话凄凉
查看>>
【Java集合源码剖析】ArrayList源码剖析
查看>>
【国家集训队】旅游 题解(树剖基础)
查看>>
IP V4 和 IP V6 初识
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
解除phpMyAdmin导入大型MySQL数据库文件大小限制
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
『Raid 平面最近点对』
查看>>
【ADO.NET基础-数据加密】第一篇(加密解密篇)
查看>>
C语言基础小结(一)
查看>>