CF739E.Gosha is hunting
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Gosha is hunting. His goal is to catch as many Pokemons as possible. Gosha has a Poke Balls and b Ultra Balls. There are n Pokemons. They are numbered 1 through n . Gosha knows that if he throws a Poke Ball at the i -th Pokemon he catches it with probability pi . If he throws an Ultra Ball at the i -th Pokemon he catches it with probability ui . 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 a Pokemons at which he will throw Poke Balls and no more than b 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 n , a and b ( 2<=n<=2000 , 0<=a,b<=n ) — the number of Pokemons, the number of Poke Balls and the number of Ultra Balls.
The second line contains n real values p1,p2,...,pn ( 0<=pi<=1 ), where pi is the probability of catching the i -th Pokemon if Gosha throws a Poke Ball to it.
The third line contains n real values u1,u2,...,un ( 0<=ui<=1 ), where ui is the probability of catching the i -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 10−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