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条)

报告相同问题?

悬赏问题

  • ¥100 求数学坐标画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站