编程介的小学生 2016-12-24 03:04 采纳率: 20.5%
浏览 986
已采纳

The Average

Description

In a speech contest, when a contestant finishes his speech, the judges will then grade his performance. The staff remove the highest grade and the lowest grade and compute the average of the rest as the contestant’s final grade. This is an easy problem because usually there are only several judges.

Let’s consider a generalized form of the problem above. Given n positive integers, remove the greatest n1 ones and the least n2 ones, and compute the average of the rest.

Input

The input consists of several test cases. Each test case consists two lines. The first line contains three integers n1, n2 and n (1 ≤ n1, n2 ≤ 10, n1 + n2 < n ≤ 5,000,000) separate by a single space. The second line contains n positive integers ai (1 ≤ ai ≤ 108 for all i s.t. 1 ≤ i ≤ n) separated by a single space. The last test case is followed by three zeroes.

Output

For each test case, output the average rounded to six digits after decimal point in a separate line.

Sample Input

1 2 5
1 2 3 4 5
4 2 10
2121187 902 485 531 843 582 652 926 220 155
0 0 0
Sample Output

3.500000
562.500000

  • 写回答

2条回答 默认 最新

  • devmiao 2016-12-27 15:29
    关注

    #include
    #include
    #include
    using namespace std;
    priority_queue , less > qmax;
    priority_queue , greater > qmin;
    int main()
    {
    int num,i,minus;
    long long sum;
    int n,m,k;
    int minsize,maxsize;
    while (scanf("%d%d%d",&m,&n,&k),m || n || k)
    {
    minsize = maxsize = 0;
    sum = 0;
    for (i = 0; i < k; i ++)
    {
    scanf("%d",&num);
    sum += (long long)num;
    if (minsize < m)
    {
    qmin.push(num);
    minsize ++;
    }
    else
    {
    if (num > qmin.top())
    {
    qmin.pop();
    qmin.push(num);
    }
    }
    if (maxsize < n)
    {
    qmax.push(num);
    maxsize ++;
    }
    else
    {
    if (num < qmax.top())
    {
    qmax.pop();
    qmax.push(num);
    }
    }
    }
    minus = 0;
    while (!qmax.empty())
    {
    minus += qmax.top();
    qmax.pop();
    }
    while (!qmin.empty())
    {
    minus += qmin.top();
    qmin.pop();
    }
    printf("%f\n",(1.0 * sum - (long long)minus) / (1.0 * (k - m - n)));
    }
    return 0;
    }

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

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号