A10568 | Anton and Making Potions
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Anton is playing a very interesting computer game, but now he is stuck at one of the levels. To pass to the next level he has to prepare $n$ potions.
Anton has a special kettle, that can prepare one potions in $x$ seconds. Also, he knows spells of two types that can faster the process of preparing potions.
1. Spells of this type speed up the preparation time of one potion. There are $m$ spells of this type, the $i$ -th of them costs $b_{i}$ manapoints and changes the preparation time of each potion to $a_{i}$ instead of $x$ .
2. Spells of this type immediately prepare some number of potions. There are $k$ such spells, the $i$ -th of them costs $d_{i}$ manapoints and instantly create $c_{i}$ potions.
Anton can use no more than one spell of the first type and no more than one spell of the second type, and the total number of manapoints spent should not exceed $s$ . Consider that all spells are used instantly and right before Anton starts to prepare potions.
Anton wants to get to the next level as fast as possible, so he is interested in the minimum number of time he needs to spent in order to prepare at least $n$ potions.
Anton has a special kettle, that can prepare one potions in $x$ seconds. Also, he knows spells of two types that can faster the process of preparing potions.
1. Spells of this type speed up the preparation time of one potion. There are $m$ spells of this type, the $i$ -th of them costs $b_{i}$ manapoints and changes the preparation time of each potion to $a_{i}$ instead of $x$ .
2. Spells of this type immediately prepare some number of potions. There are $k$ such spells, the $i$ -th of them costs $d_{i}$ manapoints and instantly create $c_{i}$ potions.
Anton can use no more than one spell of the first type and no more than one spell of the second type, and the total number of manapoints spent should not exceed $s$ . Consider that all spells are used instantly and right before Anton starts to prepare potions.
Anton wants to get to the next level as fast as possible, so he is interested in the minimum number of time he needs to spent in order to prepare at least $n$ potions.
输入格式
The first line of the input contains three integers $n$ , $m$ , $k$ ( $1<=n<=2·10^{9},1<=m,k<=2·10^{5}$ ) — the number of potions, Anton has to make, the number of spells of the first type and the number of spells of the second type.
The second line of the input contains two integers $x$ and $s$ ( $2<=x<=2·10^{9},1<=s<=2·10^{9}$ ) — the initial number of seconds required to prepare one potion and the number of manapoints Anton can use.
The third line contains $m$ integers $a_{i}$ ( $1<=a_{i}<x$ ) — the number of seconds it will take to prepare one potion if the $i$ -th spell of the first type is used.
The fourth line contains $m$ integers $b_{i}$ ( $1<=b_{i}<=2·10^{9}$ ) — the number of manapoints to use the $i$ -th spell of the first type.
There are $k$ integers $c_{i}$ ( $1<=c_{i}<=n$ ) in the fifth line — the number of potions that will be immediately created if the $i$ -th spell of the second type is used. It's guaranteed that $c_{i}$ are not decreasing, i.e. $c_{i}<=c_{j}$ if $i<j$ .
The sixth line contains $k$ integers $d_{i}$ ( $1<=d_{i}<=2·10^{9}$ ) — the number of manapoints required to use the $i$ -th spell of the second type. It's guaranteed that $d_{i}$ are not decreasing, i.e. $d_{i}<=d_{j}$ if $i<j$ .
The second line of the input contains two integers $x$ and $s$ ( $2<=x<=2·10^{9},1<=s<=2·10^{9}$ ) — the initial number of seconds required to prepare one potion and the number of manapoints Anton can use.
The third line contains $m$ integers $a_{i}$ ( $1<=a_{i}<x$ ) — the number of seconds it will take to prepare one potion if the $i$ -th spell of the first type is used.
The fourth line contains $m$ integers $b_{i}$ ( $1<=b_{i}<=2·10^{9}$ ) — the number of manapoints to use the $i$ -th spell of the first type.
There are $k$ integers $c_{i}$ ( $1<=c_{i}<=n$ ) in the fifth line — the number of potions that will be immediately created if the $i$ -th spell of the second type is used. It's guaranteed that $c_{i}$ are not decreasing, i.e. $c_{i}<=c_{j}$ if $i<j$ .
The sixth line contains $k$ integers $d_{i}$ ( $1<=d_{i}<=2·10^{9}$ ) — the number of manapoints required to use the $i$ -th spell of the second type. It's guaranteed that $d_{i}$ are not decreasing, i.e. $d_{i}<=d_{j}$ if $i<j$ .
输出格式
Print one integer — the minimum time one has to spent in order to prepare $n$ potions.
输入输出样例
输入 #1
20 3 2 10 99 2 4 3 20 10 40 4 15 10 80
输出 #1
20
输入 #2
20 3 2 10 99 2 4 3 200 100 400 4 15 100 800
输出 #2
200
In the first sample, the optimum answer is to use the second spell of the first type that costs $10$ manapoints. Thus, the preparation time of each potion changes to $4$ seconds. Also, Anton should use the second spell of the second type to instantly prepare $15$ potions spending $80$ manapoints. The total number of manapoints used is $10+80=90$ , and the preparation time is $4·5=20$ seconds ( $15$ potions were prepared instantly, and the remaining $5$ will take $4$ seconds each).
In the second sample, Anton can't use any of the spells, so he just prepares $20$ potions, spending $10$ seconds on each of them and the answer is $20·10=200$ .
In the second sample, Anton can't use any of the spells, so he just prepares $20$ potions, spending $10$ seconds on each of them and the answer is $20·10=200$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted