码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 10883 Supermean 上下取对数防溢出

时间:2014-07-02 09:43:47      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:blog   http   2014   os   for   io   

题目链接:点击打开链接

溢出了半天,觉累不爱


#include<math.h>
#include<iostream>
#include<stdio.h>
using namespace std;
#define ll int

int main(){
	ll Cas=  1, T; cin>>T;
	while(T--){
		ll n;
		cin>>n;
		double sum = 0, a;
		double hehe = 0;
		for(ll i = 0; i < n;i++){
			cin>>a;
			if(a<0) sum-=exp(hehe+log(-a)-(n-1)*log(2));
			else sum += exp(hehe+log(a)-(n-1)*log(2));
			hehe+=log(n-1-i)-log(i+1);
		}
		printf("Case #%d: %.3lf\n",Cas++,sum);
	}
	return 0;
}


UVA 10883 Supermean 上下取对数防溢出,布布扣,bubuko.com

UVA 10883 Supermean 上下取对数防溢出

标签:blog   http   2014   os   for   io   

原文地址:http://blog.csdn.net/qq574857122/article/details/36201093

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!