落絮飞雁

顺流而下,把梦做完

HDOJ5003:Osu!——套公式的水题

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
水题,套题目描述里面的公式即可。
#include
#include
#include 
#include
#include
using namespace std;
double ai[100];
int main(){
	int n, i, j, cas;
	double res;
	scanf("%d",&cas);
	while (cas--){
		scanf("%d", &n);
		res = 0;
		for (i = 0; i= 0; i--){
			res += pow(0.95, n - 1 - i)*ai[i];
		}
		printf("%.10lfn", res);
	}
	return 0;
}


原文标题:HDOJ5003:Osu!——套公式的水题|落絮飞雁的个人网站
原文链接:https://www.luoxufeiyan.com/2014/12/06/hdoj5003osu-%e5%a5%97%e5%85%ac%e5%bc%8f%e7%9a%84%e6%b0%b4%e9%a2%98/
授权协议:创作共用 署名-非商业性使用 2.5 中国大陆
除注明外,本站文章均为原创;转载时请保留上述链接。