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
  • 相关阅读:
    编译原理知识点整理
    LeetCode 3.无重复字符的最长字串
    LeetCode 2.两数相加
    LeetCode 1.两数之和
    《硅谷之火》中的个人计算机梦
    Linux常用命令行指令(持续更新~)
    idea常用快捷键(随时更新~)
    解决idea中使用maven创建spring mvc项目时创建过慢问题
    spring实战第二章小记-装配bean
    HTML5 Video播放服务端大文件
  • 原文地址:https://www.cnblogs.com/dulute/p/7272561.html
Copyright © 2011-2022 走看看