题库练习 Wardrobe
← 上一题 下一题 →

A11658 | Wardrobe

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Olya wants to buy a custom wardrobe. It should have $n$ boxes with heights $a_{1},a_{2},...,a_{n}$ , stacked one on another in some order. In other words, we can represent each box as a vertical segment of length $a_{i}$ , and all these segments should form a single segment from $0$ to ![](/uploads/acgo/image/59f107c9d645e23e_992ef556ab89.jpeg) without any overlaps.

Some of the boxes are important (in this case $b_{i}=1$ ), others are not (then $b_{i}=0$ ). Olya defines the convenience of the wardrobe as the number of important boxes such that their bottom edge is located between the heights $l$ and $r$ , inclusive.

You are given information about heights of the boxes and their importance. Compute the maximum possible convenience of the wardrobe if you can reorder the boxes arbitrarily.

输入格式

The first line contains three integers $n$ , $l$ and $r$ ( $1<=n<=10000$ , $0<=l<=r<=10000$ ) — the number of boxes, the lowest and the highest heights for a bottom edge of an important box to be counted in convenience.

The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10000$ ) — the heights of the boxes. It is guaranteed that the sum of height of all boxes (i. e. the height of the wardrobe) does not exceed $10000$ : Olya is not very tall and will not be able to reach any higher.

The second line contains $n$ integers $b_{1},b_{2},...,b_{n}$ ( $0<=b_{i}<=1$ ), where $b_{i}$ equals $1$ if the $i$ -th box is important, and $0$ otherwise.

输出格式

Print a single integer — the maximum possible convenience of the wardrobe.

输入输出样例

输入 #1
5 3 6
3 2 5 1 2
1 1 0 1 0
输出 #1
2
输入 #2
2 2 5
3 6
1 1
输出 #2
1
C++ 编辑器
输入
输出