#P40017. 2019 ICPC NA Qualifier Contest G - Research Productivity Index
2019 ICPC NA Qualifier Contest G - Research Productivity Index
题目描述
Angela is a new PhD student and she is nervous about the upcoming paper submission deadline of this year’s research conference. She has been working on multiple projects throughout the past year. Luckily most of the projects concluded successfully, and she came up with candidate papers. However not all of the papers were born equal—some have better results than others. Her advisor believes she should only submit the papers with “good enough” results so they have a high chance of getting accepted.
Angela’s research group has a unique way of evaluating the success of paper submissions. They use the research productivity index, defined as , where is the total number of papers submitted, and is the number of papers that are accepted by the conference. When , the index is defined to be zero. For example:
- if one paper is submitted and it gets accepted, the index is ;
- if papers are submitted and all get accepted, the index is ;
- if papers are submitted and get accepted, the index is ;
- if papers are submitted and get accepted, the index is ;
- if papers are submitted and all get rejected (), the index is .
Intuitively, to get a high research productivity index one wants to get as many papers accepted as possible while keeping the acceptance rate high.
For each of her papers, Angela knows exactly how likely it is that the conference would accept the paper. If she chooses wisely which papers to submit, what is the maximum expected value of her research productivity index?
输入格式
The first line of the input has a single integer (), the number of Angela’s candidate papers. The next line has space-separated integers giving the probability of each paper getting accepted. Each probability value is given as an integer percentage between and , inclusive.
输出格式
Output the maximum expected value of Angela’s research productivity index. Your answer is considered correct if it has an absolute or relative error of no more than .
样例
样例输入 1
5
30 50 70 60 90
样例输出 1
2.220889579
样例输入 2
6
30 90 30 90 30 90
样例输出 2
2.599738456
样例输入 3
4
10 10 10 10
样例输出 3
0.368937005