A15532 | N Machines
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have been invited as a production process optimization specialist to some very large company. The company has $n$ machines at its factory, standing one behind another in the production chain. Each machine can be described in one of the following two ways: $(+,~a_i)$ or $(*,~a_i)$ .
If a workpiece with the value $x$ is supplied to the machine of kind $(+,~a_i)$ , then the output workpiece has value $x + a_i$ .
If a workpiece with the value $x$ is supplied to the machine of kind $(*,~a_i)$ , then the output workpiece has value $x \cdot a_i$ .
The whole production process is as follows. The workpiece with the value $1$ is supplied to the first machine, then the workpiece obtained after the operation of the first machine is supplied to the second machine, then the workpiece obtained after the operation of the second machine is supplied to the third machine, and so on. The company is not doing very well, so now the value of the resulting product does not exceed $2 \cdot 10^9$ .
The directors of the company are not satisfied with the efficiency of the production process and have given you a budget of $b$ coins to optimize it.
To optimize production you can change the order of machines in the chain. Namely, by spending $p$ coins, you can take any machine of kind $(+,~a_i)$ and move it to any place in the chain without changing the order of other machines. Also, by spending $m$ coins, you can take any machine of kind $(*,~a_i)$ and move it to any place in the chain.
What is the maximum value of the resulting product that can be achieved if the total cost of movements that are made should not exceed $b$ coins?
If a workpiece with the value $x$ is supplied to the machine of kind $(+,~a_i)$ , then the output workpiece has value $x + a_i$ .
If a workpiece with the value $x$ is supplied to the machine of kind $(*,~a_i)$ , then the output workpiece has value $x \cdot a_i$ .
The whole production process is as follows. The workpiece with the value $1$ is supplied to the first machine, then the workpiece obtained after the operation of the first machine is supplied to the second machine, then the workpiece obtained after the operation of the second machine is supplied to the third machine, and so on. The company is not doing very well, so now the value of the resulting product does not exceed $2 \cdot 10^9$ .
The directors of the company are not satisfied with the efficiency of the production process and have given you a budget of $b$ coins to optimize it.
To optimize production you can change the order of machines in the chain. Namely, by spending $p$ coins, you can take any machine of kind $(+,~a_i)$ and move it to any place in the chain without changing the order of other machines. Also, by spending $m$ coins, you can take any machine of kind $(*,~a_i)$ and move it to any place in the chain.
What is the maximum value of the resulting product that can be achieved if the total cost of movements that are made should not exceed $b$ coins?
输入格式
The first line contains four integers $n$ , $b$ , $p$ and $m$ ( $1 \le n \le 10^6$ , $1 \le b, p, m \le 10^9$ ) — the number of machine at the factory, your budget and costs of movements of both kinds of machines.
Each of the following $n$ lines contains description of a machine. The description begins with one of the following characters: "+" or "\*", that denotes the kind of the machine. Then an integer $a_i$ follows ( $1 \le a_i \le 2 \cdot 10^9$ ).
It's guaranteed that the current value of the resulting product does not exceed $2 \cdot 10^9$ .
Each of the following $n$ lines contains description of a machine. The description begins with one of the following characters: "+" or "\*", that denotes the kind of the machine. Then an integer $a_i$ follows ( $1 \le a_i \le 2 \cdot 10^9$ ).
It's guaranteed that the current value of the resulting product does not exceed $2 \cdot 10^9$ .
输出格式
Print one integer — the maximum value of the resulting product that can be achieved if the total cost of movements that are made does not exceed $b$ coins.
输入输出样例
输入 #1
3 2 1 3 * 2 + 1 + 1
输出 #1
6
输入 #2
4 2 2 2 * 2 + 1 * 3 + 2
输出 #2
21
输入 #3
8 2 1 1 * 2 + 1 * 4 + 1 + 1 + 1 * 5 + 3
输出 #3
240
In the first example our budget is too low to move machine $(*,~2)$ , but we can move both machines $(+,~1)$ to the beginning of the chain. So the final chain will be $(+,~1)$ $(+,~1)$ $(*,~2)$ . If the workpiece with the value $1$ is supplied to the first machine, its value will be changed in the following way: $1, 2, 3, 6$ .
In the second example we can move only one machine. Let's move machine $(+,~2)$ to the beginning of the chain. The final chain will be $(+,~2)$ $(*,~2)$ $(+,~1)$ $(*,~3)$ . The value of the workpiece will be changed in the following way: $1, 3, 6, 7, 21$ .
In the third example we can place machine $(*,~4)$ before the machine $(*,~5)$ , and move machine $(+,~3)$ to the beginning of the chain. The final chain will be $(+,~3)$ $(*,~2)$ $(+,~1)$ $(+,~1)$ $(+,~1)$ $(+,~1)$ $(*,~4)$ $(*,~5)$ . The value of the workpiece will be changed in the following way: $1, 4, 8, 9, 10, 11, 12, 48, 240$ .
In the second example we can move only one machine. Let's move machine $(+,~2)$ to the beginning of the chain. The final chain will be $(+,~2)$ $(*,~2)$ $(+,~1)$ $(*,~3)$ . The value of the workpiece will be changed in the following way: $1, 3, 6, 7, 21$ .
In the third example we can place machine $(*,~4)$ before the machine $(*,~5)$ , and move machine $(+,~3)$ to the beginning of the chain. The final chain will be $(+,~3)$ $(*,~2)$ $(+,~1)$ $(+,~1)$ $(+,~1)$ $(+,~1)$ $(*,~4)$ $(*,~5)$ . The value of the workpiece will be changed in the following way: $1, 4, 8, 9, 10, 11, 12, 48, 240$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted