ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Codeforces442B_Andrey and Problem(贪心)

2019-05-13 09:39:24  阅读:351  来源: 互联网

标签:Andrey int Codeforces442B up 概率 Problem friends problem


Andrey and Problem time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard 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
4
0.1 0.2 0.3 0.8
output
0.800000000000
input
2
0.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;
}




标签:Andrey,int,Codeforces442B,up,概率,Problem,friends,problem
来源: https://www.cnblogs.com/mqxnongmin/p/10854918.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有