#P6856. 「ICPC World Finals 2021」自由标记的手牌

「ICPC World Finals 2021」自由标记的手牌

Description

There is a fairly well-known mentalism trick known as the Fitch Cheney trick. From a deck of nn playing cards, kk are selected uniformly at random and given to an assistant while the magician is out of the room. The assistant places k1k - 1 of the selected cards on a table, face up, and the single remaining card face down. The cards are placed in a single row with the face-down card at the end (see the picture for an example). The magician enters the room, looks at the cards on the table, and announces what the kthk^{\text{th}} card is, although its face is hidden. The trick is typically done with n=52n = 52 and k=5k = 5.

The assistant uses two ways of passing information to the magician. First, they can pick which one of the kk cards to keep hidden. Second, they can rearrange the other k1k - 1 cards in a specific way. For the case n=52n = 52 and k=5k = 5 both techniques are needed, since there are only 2424 ways of rearranging four cards, which is not enough to reliably signal the fifth card. It is an interesting exercise to come up with a simple, easy-to-remember strategy for executing this trick, but right now you have another concern.

E.png

Example placement of cards for k = 5

You were planning to perform this trick today, but just now you have learned that the deck has more cards than you expected. The trick may be impossible! In desperation, you have decided to cheat a little. You have mm distinguishable ways of marking the backs of the playing cards. You have marked the backs of all nn cards, allowing you to narrow down the possibilities for the kthk^\text{th} card. For example, if there are 66 cards marked with a particular method, and you see that the back of the kth card is marked with that method, you know it must be one of those 66 cards.

Determine the probability that you will successfully guess the kthk^\text{th} card, assuming you and the assistant execute an optimal (but likely very complicated!) strategy.

Input

The input contains one line with several integers. The first integer gives kk (2k102 \le k \le 10), the number of cards that will be selected. The second integer gives mm (1m101 \le m \le 10), the number of ways of marking the cards. The line is completed by mm positive integers, giving the number of cards marked with each distinct method. The sum of these mm integers is nn (kn109k \le n \le 10^9), which is the size of the deck.

Output

Output the highest possible probability of guessing the kthk^\text{th} card correctly, accurate up to an absolute error of 10910^{-9}.

4 1 28

0.96

3 3 5 12 3

0.854385964912