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

A11470 | Birds

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

题目描述

Apart from plush toys, Imp is a huge fan of little yellow birds!

![](/uploads/acgo/image/6ac4715f4e0592db_ed0d9dda67e7.jpeg)To summon birds, Imp needs strong magic. There are $n$ trees in a row on an alley in a park, there is a nest on each of the trees. In the $i$ -th nest there are $c_{i}$ birds; to summon one bird from this nest Imp needs to stay under this tree and it costs him $cost_{i}$ points of mana. However, for each bird summoned, Imp increases his mana capacity by $B$ points. Imp summons birds one by one, he can summon any number from $0$ to $c_{i}$ birds from the $i$ -th nest.

Initially Imp stands under the first tree and has $W$ points of mana, and his mana capacity equals $W$ as well. He can only go forward, and each time he moves from a tree to the next one, he restores $X$ points of mana (but it can't exceed his current mana capacity). Moving only forward, what is the maximum number of birds Imp can summon?

输入格式

The first line contains four integers $n$ , $W$ , $B$ , $X$ ( $1<=n<=10^{3},0<=W,B,X<=10^{9}$ ) — the number of trees, the initial points of mana, the number of points the mana capacity increases after a bird is summoned, and the number of points restored when Imp moves from a tree to the next one.

The second line contains $n$ integers $c_{1},c_{2},...,c_{n}$ ( $0<=c_{i}<=10^{4}$ ) — where $c_{i}$ is the number of birds living in the $i$ -th nest. It is guaranteed that ![](/uploads/acgo/image/35ed7011cd6b023d_148f4ef3f0ed.jpeg).

The third line contains $n$ integers $cost_{1},cost_{2},...,cost_{n}$ ( $0<=cost_{i}<=10^{9}$ ), where $cost_{i}$ is the mana cost to summon a bird from the $i$ -th nest.

输出格式

Print a single integer — the maximum number of birds Imp can summon.

输入输出样例

输入 #1
2 12 0 4
3 4
4 2
输出 #1
6
输入 #2
4 1000 10 35
1 2 4 5
1000 500 250 200
输出 #2
5
输入 #3
2 10 7 11
2 10
6 1
输出 #3
11
C++ 编辑器
输入
输出