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

poj1862

时间:2017-04-13 00:40:52      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:--   blog   stream   span   math   nbsp   amp   sort   pac   

水题一个,就是永远先用最大的数碰撞

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
const int maxn=100+10;
double a[maxn];
int main()
{
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    scanf("%lf",&a[i]);
    sort(a,a+n);
    double sum=a[n-1];
        for(int i=n-2;i>=0;i--)
        {  sort(a,a+i+1);
            sum=2*sqrt(a[i]*sum);
        }
       printf("%.3f\n",sum);
    return 0;
}

 

poj1862

标签:--   blog   stream   span   math   nbsp   amp   sort   pac   

原文地址:http://www.cnblogs.com/Wangwanxiang/p/6701922.html

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