题目链接

B. 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.

Accepted Code:

 /*************************************************************************
> File Name: 442B.cpp
> Author: Stomach_ache
> Mail: sudaweitong@gmail.com
> Created Time: 2014年06月23日 星期一 14时19分19秒
> Propose:
************************************************************************/ #include <cmath>
#include <string>
#include <cstdio>
#include <fstream>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std; #define eps 1e-9
int n;
double p[]; double cal(int x) {
double result = 0.0;
for (int i = x; i < n; i++) {
double tmp = p[i];
for (int j = x; j < n; j++) {
if (i == j) continue;
tmp *= (1.0 - p[j]);
}
result += tmp;
}
return result;
} int
main(void) {
while (~scanf("%d", &n) && n) {
for (int i = ; i < n; i++) scanf("%lf", p+i);
sort(p, p + n);
double ans = p[n-];
for (int i = n-; i >= ; i--) {
double tmp = cal(i);
if (tmp - ans < eps) break;
ans = tmp;
}
printf("%.17f\n", ans);
} return ;
}

最新文章

  1. mosquitt win32
  2. Java通过JNI调用C
  3. 不通过App Store实现ios应用分发下载安装
  4. Java简单类(部门、领导、雇员关系)
  5. 获取ServletContext
  6. 虚拟机 本地 本机 双启动 运行 vhd local Dual Boot
  7. .NET DES 加密
  8. Ref相关的名词解释
  9. Java GC专家系列4:Apache的MaxClients设置及其对Tomcat Full GC的影响
  10. Eclipse-----jrebel实现jetty热部署
  11. Javascript中的数组去重-indexof方法
  12. VMware Workstation Pro 安装centos6.5
  13. vim 命令大全 / vi 命令大全
  14. python基础--absl.flags
  15. Proxmox VE登陆的时候提示没有有效的订阅You do not have a valid subscription for this server. Please visit www.proxmox.com to get a list of available options.
  16. JProfiler性能分析工具
  17. PropertyEditor、Formatter、Converter的应用
  18. 第二阶段第三次spring会议
  19. MVC下 Area和Web同名的Controller问题
  20. 【LeetCode】二叉搜索树的前序,中序,后续遍历非递归方法

热门文章

  1. sshd配置文件详解
  2. 廖雪峰Java10加密与安全-3摘要算法-1MD5
  3. 3926: [Zjoi2015]诸神眷顾的幻想乡
  4. js节点
  5. TF-IDF了解
  6. sqlserver 下三种批量插入数据的方法
  7. Leetcode264. Ugly Number II丑数2
  8. 【python之路43】tornado的用法(一)
  9. [转]Event loop——浏览器和Node区别
  10. 20190814-A Second