CF623D.Birthday

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A MIPT student named Misha has a birthday today, and he decided to celebrate it in his country house in suburban Moscow. nn friends came by, and after a typical party they decided to play blind man's buff.

The birthday boy gets blindfolded and the other players scatter around the house. The game is played in several rounds. In each round, Misha catches exactly one of his friends and has to guess who it is. The probability of catching the ii -th friend does not change between rounds and is equal to pip_{i} percent (as we know, it is directly proportional to the amount of alcohol consumed by the ii -th friend) and p1+p2+...+pn=100p_{1}+p_{2}+...+p_{n}=100 holds. Misha has no information about who he caught. After Misha makes an attempt to guess the caught person, the round ends. Even then, Misha isn't told whether he guessed correctly, and a new round begins.

The game ends when Misha guesses every friend at least once, that is, there exists such set of rounds k1,k2,...,knk_{1},k_{2},...,k_{n} , that during round number kik_{i} Misha caught the ii -th friend and guessed him. Misha wants to minimize the expectation of the number of rounds of the game. Despite the fact that at any point in the game Misha has no information about who he has already guessed, his friends are honest, and if they see that the condition for the end of the game is fulfilled, the game ends immediately. Find the expectation of the number of rounds in the game if Misha plays optimally.

输入格式

The first line of the input contains a single integer nn ( 1<=n<=1001<=n<=100 ) — the number of Misha's friends.

The second line contains nn integers pip_{i} (), giving the probability to catch the ii -th friend in one particular round in percent.

输出格式

Print a single real value — the expectation of the number of rounds provided that Misha plays optimally. Your answer will be considered correct if its absolute or relative error does not exceed 10610^{-6} .

Namely: let's assume that your answer is aa , and the answer of the jury is bb . The checker program will consider your answer correct, if .

输入输出样例

  • 输入#1

    2
    50 50
    

    输出#1

    5.0000000000
    
  • 输入#2

    4
    50 20 20 10
    

    输出#2

    39.2846263444
    

说明/提示

The optimal strategy in the first sample is to guess friends alternately.

首页