Wizards and Huge Prize

题意翻译

最开始你有 $k$ 的容积,有 $n$ 轮比赛,每轮比赛胜率为 $p_i$,比赛分为两种(具体种类有输入给出,若 $a_i \geq 1$ 则为第一种,若 $a_i=-1$ 则为第二种),第一种的奖品是增加 $a_i$ 的容积,第二种奖品是获得一个物品,体积为 1,$n$ 轮比赛结束后所有物品都能被装下的方案才是合法方案(即容积大于等于物品个数),问赢得比赛总场数大于等于 $l$ 时方案合法的概率。

题目描述

One must train much to do well on wizardry contests. So, there are numerous wizardry schools and magic fees. One of such magic schools consists of $ n $ tours. A winner of each tour gets a huge prize. The school is organised quite far away, so one will have to take all the prizes home in one go. And the bags that you've brought with you have space for no more than $ k $ huge prizes. Besides the fact that you want to take all the prizes home, you also want to perform well. You will consider your performance good if you win at least $ l $ tours. In fact, years of organizing contests proved to the organizers that transporting huge prizes is an issue for the participants. Alas, no one has ever invented a spell that would shrink the prizes... So, here's the solution: for some tours the winner gets a bag instead of a huge prize. Each bag is characterized by number $ a_{i} $ — the number of huge prizes that will fit into it. You already know the subject of all tours, so you can estimate the probability $ p_{i} $ of winning the $ i $ -th tour. You cannot skip the tour under any circumstances. Find the probability that you will perform well on the contest and will be able to take all won prizes home (that is, that you will be able to fit all the huge prizes that you won into the bags that you either won or brought from home).

输入输出格式

输入格式


The first line contains three integers $ n $ , $ l $ , $ k $ ( $ 1<=n<=200,0<=l,k<=200 $ ) — the number of tours, the minimum number of tours to win, and the number of prizes that you can fit in the bags brought from home, correspondingly. The second line contains $ n $ space-separated integers, $ p_{i} $ ( $ 0<=p_{i}<=100 $ ) — the probability to win the $ i $ -th tour, in percents. The third line contains $ n $ space-separated integers, $ a_{i} $ ( $ 1<=a_{i}<=200 $ ) — the capacity of the bag that will be awarded to you for winning the $ i $ -th tour, or else -1, if the prize for the $ i $ -th tour is a huge prize and not a bag.

输出格式


Print a single real number — the answer to the problem. The answer will be accepted if the absolute or relative error does not exceed $ 10^{-6} $ .

输入输出样例

输入样例 #1

3 1 0
10 20 30
-1 -1 2

输出样例 #1

0.300000000000

输入样例 #2

1 1 1
100
123

输出样例 #2

1.000000000000

说明

In the first sample we need either win no tour or win the third one. If we win nothing we wouldn't perform well. So, we must to win the third tour. Other conditions will be satisfied in this case. Probability of wining the third tour is 0.3. In the second sample we win the only tour with probability 1.0, and go back home with bag for it.