#P15121. [ICPC 2024 LAC] Greek Casino
[ICPC 2024 LAC] Greek Casino
Description
Since the early civilizations, humankind has enjoyed games of chance. Even the ingenious Greeks, known for their groundbreaking concept of the least common multiple (LCM), couldn’t resist a good gamble.
Inspired by this mathematical marvel, folks in Athens devised a unique betting system: after purchasing a ticket, a participant would receive a random number of coins. To determine this number, there are ordered slots numbered from 1 to . A token is initially placed at slot 1, and the following steps are repeated:
- Let be the number of the slot where the token is currently located.
- Generate a random integer between 1 and , and compute the LCM of and .
- If , the procedure ends.
- Otherwise, the token is moved to slot , and the participant receives one coin.
As it is well known, the house always wins: the casino employs a particular probability distribution for generating random integers, so as to ensure a profitable outcome.
The casino owner is constantly seeking to optimize the betting system’s profitability. You, an AI designed to aid in such tasks, are given and the probability distribution. Determine the expected total number of coins awarded to a participant.
Input Format
The first line contains an integer () indicating the number of slots.
The second line contains integers ( for ), representing that the probability of generating is , that is, the probability of generating is the relative weight of with respect to the sum of the whole list .
Output Format
Output a single line with the expected total number of coins awarded to a participant. The output must have an absolute or relative error of at most . It can be proven that the procedure described in the statement ends within a finite number of iterations with probability 1, and that the expected total number of coins is indeed finite.
3
1 1 1
3.5
3
1 1 2
3.6666666667
京公网安备 11011102002149号