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
  • 相关阅读:
    纯html的table打印注意事项
    Silverlight:针式打印机文字模糊的改善办法
    C#执行XSL转换
    tomcat 新手上路
    跨浏览器的剪贴板访问解决方案
    打印机设置(PrintDialog)、页面设置(PageSetupDialog) 及 RDLC报表如何选择指定打印机
    利用ActiveX实现web页面设置本地默认打印机、纸张大小
    前端工程化的理解
    算法注意---3、分治的本质
    算法与数据结构---4.9、最大子段和-dp空间优化
  • 原文地址:https://www.cnblogs.com/dulute/p/7272561.html
Copyright © 2011-2022 走看看