CF229E.Gifts

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Once upon a time an old man and his wife lived by the great blue sea. One day the old man went fishing and caught a real live gold fish. The fish said: "Oh ye, old fisherman! Pray set me free to the ocean and I will grant you with nn gifts, any gifts you wish!". Then the fish gave the old man a list of gifts and their prices. Some gifts on the list can have the same names but distinct prices. However, there can't be two gifts with the same names and the same prices. Also, there can be gifts with distinct names and the same prices. The old man can ask for nn names of items from the list. If the fish's list has pp occurrences of the given name, then the old man can't ask for this name of item more than pp times.

The old man knows that if he asks for ss gifts of the same name, the fish will randomly (i.e. uniformly amongst all possible choices) choose ss gifts of distinct prices with such name from the list. The old man wants to please his greedy wife, so he will choose the nn names in such a way that he can get nn gifts with the maximum price. Besides, he isn't the brightest of fishermen, so if there are several such ways, he chooses one of them uniformly.

The old man wondered, what is the probability that he can get nn most expensive gifts. As the old man isn't good at probability theory, he asks you to help him.

输入格式

The first line contains two space-separated integers nn and mm ( 1<=n,m<=10001<=n,m<=1000 ) — the number of the old man's wishes and the number of distinct names in the goldfish's list, correspondingly. Then mm lines follow: the ii -th line first contains integer kik_{i} (k_{i}>0) — the number of distinct prices of gifts with the ii -th name, then kik_{i} distinct space-separated integers cijc_{ij} ( 1<=cij<=1091<=c_{ij}<=10^{9} ), the gifts' prices.

It is guaranteed that the sum of all kik_{i} doesn't exceed 1000. It is guaranteed that nn is not greater than the total number of the gifts.

输出格式

On a single line print one real number — the probability of getting nn most valuable gifts. The answer will be considered correct if its absolute or relative error does not exceed 10910^{-9} .

输入输出样例

  • 输入#1

    3 1
    3 10 20 30
    

    输出#1

    1.000000000
    
  • 输入#2

    3 2
    1 40
    4 10 20 30 40
    

    输出#2

    0.166666667
    
首页