Preparando MOJI

Bath Queue

2000ms 262144K

Description:

There are n students living in the campus. Every morning all students wake up at the same time and go to wash. There are m rooms with wash basins. The i-th of these rooms contains ai wash basins. Every student independently select one the rooms with equal probability and goes to it. After all students selected their rooms, students in each room divide into queues by the number of wash basins so that the size of the largest queue is the least possible. Calculate the expected value of the size of the largest queue among all rooms.

Input:

The first line contains two positive integers n and m (1 ≤ n, m ≤ 50) — the amount of students and the amount of rooms. The second line contains m integers a1, a2, ... , am (1 ≤ ai ≤ 50). ai means the amount of wash basins in the i-th room.

Output:

Output single number: the expected value of the size of the largest queue. Your answer must have an absolute or relative error less than 10 - 9.

Sample Input:

1 1
2

Sample Output:

1.00000000000000000000

Sample Input:

2 2
1 1

Sample Output:

1.50000000000000000000

Sample Input:

2 3
1 1 1

Sample Output:

1.33333333333333350000

Sample Input:

7 5
1 1 2 3 1

Sample Output:

2.50216960000000070000

Informação

Codeforces

Provedor Codeforces

Código CF28C

Tags

combinatoricsdpprobabilities

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:27:31

Relacionados

Nada ainda