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 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题