zoukankan      html  css  js  c++  java
  • Stripies POJ

    Our chemical biologists have invented a new very useful form of life called stripies (in fact, they were first called in Russian - polosatiki, but the scientists had to invent an English name to apply for an international patent). The stripies are transparent amorphous amebiform creatures that live in flat colonies in a jelly-like nutrient medium. Most of the time the stripies are moving. When two of them collide a new stripie appears instead of them. Long observations made by our scientists enabled them to establish that the weight of the new stripie isn't equal to the sum of weights of two disappeared stripies that collided; nevertheless, they soon learned that when two stripies of weights m1 and m2 collide the weight of resulting stripie equals to 2*sqrt(m1*m2). Our chemical biologists are very anxious to know to what limits can decrease the total weight of a given colony of stripies. 
    You are to write a program that will help them to answer this question. You may assume that 3 or more stipies never collide together. 

    Input

    The first line of the input contains one integer N (1 <= N <= 100) - the number of stripies in a colony. Each of next N lines contains one integer ranging from 1 to 10000 - the weight of the corresponding stripie.

    Output

    The output must contain one line with the minimal possible total weight of colony with the accuracy of three decimal digits after the point.

    Sample Input

    3
    72
    30
    50
    

    Sample Output

    120.000
    水题 不多BB
     1 #include <iostream>
     2 using namespace std;
     3 #include<string.h>
     4 #include<string>
     5 #include<set>
     6 #include<sstream>
     7 #include<stdio.h>
     8 #include<queue>
     9 #include<math.h>
    10 #include<algorithm>
    11 bool cmp(double a,double b)
    12 {
    13     return a>b;
    14 }
    15 int  main()
    16 {
    17     double a[110];
    18     int t;
    19     while(cin>>t)
    20     {
    21         for(int i=0;i<t;i++)
    22             cin>>a[i];
    23         sort(a,a+t,cmp);
    24         for(int i=1;i<t;i++)
    25         {
    26             a[i]=2*sqrt(a[i]*a[i-1]);
    27         }
    28        printf("%.3lf
    ",a[t-1]);
    29     }
    30     return 0;
    31 }
    View Code
  • 相关阅读:
    OpenResty 作者章亦春访谈实录
    linux 下C语言学习路线
    swift 集合类型
    不懂技术的人不要对懂技术的人说这很容易实现
    java学习笔记7--抽象类与抽象方法
    java学习笔记6--类的继承、Object类
    python练习题
    python的里字典和列表
    python里list列表,tuple元组内部功能介绍
    python里float和long内部功能及字符串str介绍
  • 原文地址:https://www.cnblogs.com/dulute/p/7272561.html
Copyright © 2011-2022 走看看