Lucky_- 2018-02-07 11:20 采纳率: 66.7%
浏览 1030
已采纳

c++提交了很多次,但是都WA了,检查了几遍,但是总不知道错在哪里了,求解。万分感谢

D - Average Sleep Time

It's been almost a week since Polycarp couldn't get rid of insomnia. And as you may already know, one week in Berland lasts k days!

When Polycarp went to a doctor with his problem, the doctor asked him about his sleeping schedule (more specifically, the average amount of hours of sleep per week). Luckily, Polycarp kept records of sleep times for the last n days. So now he has a sequence a1, a2, ..., an, where ai is the sleep time on the i-th day.

The number of records is so large that Polycarp is unable to calculate the average value by himself. Thus he is asking you to help him with the calculations. To get the average Polycarp is going to consider k consecutive days as a week. So there will be n - k + 1 weeks to take into consideration. For example, if k = 2, n = 3 and a = [3, 4, 7], then the result is .

You should write a program which will calculate average sleep times of Polycarp over all weeks.

Input
The first line contains two integer numbers n and k (1 ≤ k ≤ n ≤ 2·105).

The second line contains n integer numbers a1, a2, ..., an (1 ≤ ai ≤ 105).

Output
Output average sleeping time over all weeks.

The answer is considered to be correct if its absolute or relative error does not exceed 10 - 6. In particular, it is enough to output real number with at least 6 digits after the decimal point.

Example
Input
3 2
3 4 7
Output
9.0000000000
Input
1 1
10
Output
10.0000000000
Input
8 2
1 2 4 100000 123 456 789 1
Output
28964.2857142857

我的代码:
#include
#include
#include
#include
#include
using namespace std;
#define N 200005
long long int a[N];
int main()
{
long long int n,k,i,j;
double sum = 0,sum1 = 0;
scanf("%lld %lld",&n,&k);
for(int i = 0;i < n; i++)
scanf("%lld",&a[i]);
if(n == k)
{
for(int i = 0;i < n; i++)
{
sum += a[i];
}
printf("%.10lf\n",sum);
}
else
{
j = 0;
for(i = 1;i <= n - k; i++) //n - k表示当有n - k + 1个周时,会有n - k个重复加的数字。
{
j += k - 1;
sum1 += 2 * a[j];
a[j] = 0;
}
for(int i = 0;i < n; i++)
{
if(a[i] != 0)
sum1 += a[i];
}
double ans = sum1 /((n - k + 1) * 1.0);
printf("%.10lf\n",ans);
}
return 0;
}

  • 写回答

6条回答 默认 最新

  • 电波侵蚀 2018-02-07 12:30
    关注

    你对题目理解有问题
    比如说
    7 3
    1 2 3 4 5 6 7
    应该这样算
    图片说明
    但用你的代码肯定不会,你看你代码sum1 += 2 * a[j]; 很明显我这个3到5每个数字都加了3次

    MDZZ英文题目最讨嫌,还是百度答案把

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配