CF739E.Gosha is hunting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Gosha is hunting. His goal is to catch as many Pokemons as possible. Gosha has aa Poke Balls and bb Ultra Balls. There are nn Pokemons. They are numbered 11 through nn . Gosha knows that if he throws a Poke Ball at the ii -th Pokemon he catches it with probability pip_{i} . If he throws an Ultra Ball at the ii -th Pokemon he catches it with probability uiu_{i} . He can throw at most one Ball of each type at any Pokemon.

The hunting proceeds as follows: at first, Gosha chooses no more than aa Pokemons at which he will throw Poke Balls and no more than bb Pokemons at which he will throw Ultra Balls. After that, he throws the chosen Balls at the chosen Pokemons. If he throws both Ultra Ball and Poke Ball at some Pokemon, he is caught if and only if he is caught by any of these Balls. The outcome of a throw doesn't depend on the other throws.

Gosha would like to know what is the expected number of the Pokemons he catches if he acts in an optimal way. In other words, he would like to know the maximum possible expected number of Pokemons can catch.

输入格式

The first line contains three integers nn , aa and bb ( 2<=n<=20002<=n<=2000 , 0<=a,b<=n0<=a,b<=n ) — the number of Pokemons, the number of Poke Balls and the number of Ultra Balls.

The second line contains nn real values p1,p2,...,pnp_{1},p_{2},...,p_{n} ( 0<=pi<=10<=p_{i}<=1 ), where pip_{i} is the probability of catching the ii -th Pokemon if Gosha throws a Poke Ball to it.

The third line contains nn real values u1,u2,...,unu_{1},u_{2},...,u_{n} ( 0<=ui<=10<=u_{i}<=1 ), where uiu_{i} is the probability of catching the ii -th Pokemon if Gosha throws an Ultra Ball to it.

All the probabilities are given with exactly three digits after the decimal separator.

输出格式

Print the maximum possible expected number of Pokemons Gosha can catch. The answer is considered correct if it's absolute or relative error doesn't exceed 10410^{-4} .

输入输出样例

  • 输入#1

    3 2 2
    1.000 0.000 0.500
    0.000 1.000 0.500
    

    输出#1

    2.75
    
  • 输入#2

    4 1 3
    0.100 0.500 0.500 0.600
    0.100 0.500 0.900 0.400
    

    输出#2

    2.16
    
  • 输入#3

    3 2 0
    0.412 0.198 0.599
    0.612 0.987 0.443
    

    输出#3

    1.011
首页