UVA10883 Supermean

Posted 2855669158

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA10883 Supermean相关的知识,希望对你有一定的参考价值。

题意:输入n个数(n<5000),每次求出所有相邻两个数的平均数,n-1次后只剩一个数,问这个数是多少?

题解:算每一个数对答案的贡献,可以发现最后的答案是每一个数乘以一个多项式展开的系数,n非常大,由于最后的答案是double范围内,所以取一个log再算一次幂。注意:log(a*b) = log(a)+log(b) log(a/b) = log(a)-log(b)

#include <bits/stdc++.h>
#define ll long long
#define maxn 100100
using namespace std;
double c[maxn], a[maxn];
int main(){
    int T, n, num = 1;
    scanf("%d", &T);
    c[0] = 0;
    for(int i=1;i<=50000;i++)
        c[i] = log(i)/log(2)+c[i-1];
    while(T--){
        scanf("%d", &n);
        for(int i=0;i<n;i++)
            scanf("%lf", &a[i]);
        double ans = 0;
        for(int i=0;i<n;i++)
            if(a[i]>0) ans += pow(2, c[n-1]-c[i]-c[n-1-i]+log(a[i])/log(2)-n+1);
            else ans -= pow(2, c[n-1]-c[i]-c[n-1-i]+log(-a[i])/log(2)-n+1);
        printf("Case #%d: %.3f\n", num++, ans);
    }
    return 0;
}

 

以上是关于UVA10883 Supermean的主要内容,如果未能解决你的问题,请参考以下文章

UVa 10883 超级平均数(二项式系数+对数计算)

UVa 1442 - Cave

UVa10410代码

UVa 1593代码对齐

UVa 1593 代码对齐

算法习题---5.1代码对齐(UVa1593)