zoukankan      html  css  js  c++  java
  • (水)hdu 5003

    Osu!

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 737    Accepted Submission(s): 371
    Special Judge


    Problem Description
    Osu! is a famous music game that attracts a lot of people. In osu!, there is a performance scoring system, which evaluates your performance. Each song you have played will have a score. And the system will sort all you scores in descending order. After that, the i-th song scored ai will add 0.95^(i-1)*ai to your total score.

    Now you are given the task to write a calculator for this system.
     
    Input
    The first line contains an integer T, denoting the number of the test cases.

    For each test case, the first line contains an integer n, denoting the number of songs you have played. The second line contains n integers a1, a2, ..., an separated by a single space, denoting the score of each song.

    T<=20, n<=50, 1<=ai<=500.
     
    Output
    For each test case, output one line for the answer.

    Your answers will be considered correct if its absolute error is smaller than 1e-5.
     
    Sample Input
    1 2 530 478
     
    Sample Output
    984.1000000000
     
    Source
     
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    using namespace std;
    int tt,n,a[52];
    bool cmp(int x,int y)
    {
          return x>y;
    }
    int main()
    {
          scanf("%d",&tt);
          while(tt--)
          {
                scanf("%d",&n);
                for(int i=1;i<=n;i++)
                      scanf("%d",&a[i]);
                sort(a+1,a+1+n,cmp);
                double ans=0;
                for(int i=1;i<=n;i++)
                      ans+=pow(0.95,i-1)*a[i];
                printf("%.10lf
    ",ans);
          }
          return 0;
    }
    

      

  • 相关阅读:
    mxGraph 3.7.2
    ER模型
    帮忙画个ER图_百度知道
    ER图
    Download Devart T4 Editor
    Codeuml —— 设计 UML 图表跟你编码一样快
    使用 Sublime + PlantUML 高效地画图
    Rappid Diagramming Framework
    Activiti Designer 5.15.0 发布,可视化流程设计器
    JavaScript Diagramming
  • 原文地址:https://www.cnblogs.com/a972290869/p/4249386.html
Copyright © 2011-2022 走看看