CF183D.T-shirt

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are going to work in Codeforces as an intern in a team of nn engineers, numbered 11 through nn . You want to give each engineer a souvenir: a T-shirt from your country (T-shirts are highly desirable in Codeforces). Unfortunately you don't know the size of the T-shirt each engineer fits in. There are mm different sizes, numbered 11 through mm , and each engineer will fit in a T-shirt of exactly one size.

You don't know the engineers' exact sizes, so you asked your friend, Gerald. Unfortunately, he wasn't able to obtain the exact sizes either, but he managed to obtain for each engineer ii and for all sizes jj , the probability that the size of the T-shirt that fits engineer ii is jj .

Since you're planning to give each engineer one T-shirt, you are going to bring with you exactly nn T-shirts. For those nn T-shirts, you can bring any combination of sizes (you can bring multiple T-shirts with the same size too!). You don't know the sizes of T-shirts for each engineer when deciding what sizes to bring, so you have to pick this combination based only on the probabilities given by your friend, Gerald.

Your task is to maximize the expected number of engineers that receive a T-shirt of his size.

This is defined more formally as follows. When you finally arrive at the office, you will ask each engineer his T-shirt size. Then, if you still have a T-shirt of that size, you will give him one of them. Otherwise, you don't give him a T-shirt. You will ask the engineers in order starting from engineer 11 , then engineer 22 , and so on until engineer nn .

输入格式

The first line contains two space-separated integers nn and mm (1<=n<=3000,1<=m<=300)(1<=n<=3000,1<=m<=300) , denoting the number of engineers and the number of T-shirt sizes, respectively.

Then nn lines follow, each line contains mm space-separated integers. The jj -th integer in the ii -th line represents the probability that the ii -th engineer fits in a T-shirt of size jj . Each probability will be given as an integer between 00 and 10001000 , inclusive. The actual probability should be calculated as the given number divided by 10001000 .

It is guaranteed that for any engineer, the sum of the probabilities for all mm T-shirts is equal to one.

输出格式

Print a single real number denoting the maximum possible expected number of engineers that will receive a T-shirt.

For the answer the absolute or relative error of 10910^{-9} is acceptable.

输入输出样例

  • 输入#1

    2 2
    500 500
    500 500
    

    输出#1

    1.500000000000
    
  • 输入#2

    3 3
    1000 0 0
    1000 0 0
    0 1000 0
    

    输出#2

    3.000000000000
    
  • 输入#3

    1 4
    100 200 300 400
    

    输出#3

    0.400000000000
    

说明/提示

For the first example, bring one T-shirt of each size. With 0.50.5 chance, either both engineers fit inside T-shirts of size 11 or both fit inside T-shirts of size 22 . With the other 0.50.5 chance, one engineer fits inside a T-shirt of size 11 and the other inside a T-shirt of size 22 . If the first is true, the number of engineers that receive a T-shirt is one. If the second is true, the number of such engineers is two. Hence, the expected number of engineers who receive a T-shirt is 1.51.5 . This is maximum possible expected number of engineers for all sets of T-shirts.

For the second example, bring two T-shirts of size 11 and one T-shirt of size 22 . This way, each engineer will definitely receive a T-shirt of his size.

For the third example, bring one T-shirt of size 44 .

首页