Codeforces442B_Andrey and Problem(貪心)

來源:互聯網
上載者:User

Andrey and Problemtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

Andrey needs one more problem to conduct a programming contest. He has n friends who are always willing to help. He can ask some of them to come up with a contest problem. Andrey knows one value for each of his fiends — the probability that this friend will come up with a problem if Andrey asks him.

Help Andrey choose people to ask. As he needs only one problem, Andrey is going to be really upset if no one comes up with a problem or if he gets more than one problem from his friends. You need to choose such a set of people that maximizes the chances of Andrey not getting upset.

Input

The first line contains a single integer n (1 ≤ n ≤ 100) — the number of Andrey's friends. The second line contains n real numbers pi(0.0 ≤ pi ≤ 1.0) — the probability that the i-th friend can come up with a problem. The probabilities are given with at most 6 digits after decimal point.

Output

Print a single real number — the probability that Andrey won't get upset at the optimal choice of friends. The answer will be considered valid if it differs from the correct one by at most 10 - 9.

Sample test(s)input
40.1 0.2 0.3 0.8
output
0.800000000000
input
20.1 0.2
output
0.260000000000
Note

In the first sample the best strategy for Andrey is to ask only one of his friends, the most reliable one.

In the second sample the best strategy for Andrey is to ask all of his friends to come up with a problem. Then the probability that he will get exactly one problem is 0.1·0.8 + 0.9·0.2 = 0.26.

解題報告

好久不做cf,大晚上想來水水。。。看來自己還是太嫩了。

Andrey想讓朋友出題,他知道每個朋友出題的機率,他只想要一道題,並且想要實現的機率最大。

如果Andrey之選一個人問的話一定是機率最大的,選兩個人一定是機率前兩的人,這就是貪心策略。如果選擇機率最大的那個人,實現的機率就是它本身,如果選擇前面兩大機率P1,P2的,實現的機率就是P1*(1-P2)+(1-P1)*P2。
#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;double num[1000];int cmp(double a,double b){    return a>b;}int main(){    int n;    while(cin>>n)    {        double sum=0,cnt=0,maxx=0;        for(int i=0; i<n; i++)            cin>>num[i];        sort(num,num+n,cmp);        for(int k=1; k<=n; k++)        {            sum=0;            for(int i=0; i<k; i++)            {                cnt=1;                for(int j=0; j<k; j++)                {                    if(i!=j)                    {                        cnt*=(double)(1-num[j]);                    }                    else cnt*=num[j];                }                sum+=cnt;            }            maxx=max(sum,maxx);        }        printf("%.12lf\n",maxx);    }    return 0;}




聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.