A10858 | USB vs. PS/2
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Due to the increase in the number of students of Berland State University it was decided to equip a new computer room. You were given the task of buying mouses, and you have to spend as little as possible. After all, the country is in crisis!
The computers bought for the room were different. Some of them had only USB ports, some — only PS/2 ports, and some had both options.
You have found a price list of a certain computer shop. In it, for $m$ mouses it is specified the cost and the type of the port that is required to plug the mouse in (USB or PS/2). Each mouse from the list can be bought at most once.
You want to buy some set of mouses from the given price list in such a way so that you maximize the number of computers equipped with mouses (it is not guaranteed that you will be able to equip all of the computers), and in case of equality of this value you want to minimize the total cost of mouses you will buy.
The computers bought for the room were different. Some of them had only USB ports, some — only PS/2 ports, and some had both options.
You have found a price list of a certain computer shop. In it, for $m$ mouses it is specified the cost and the type of the port that is required to plug the mouse in (USB or PS/2). Each mouse from the list can be bought at most once.
You want to buy some set of mouses from the given price list in such a way so that you maximize the number of computers equipped with mouses (it is not guaranteed that you will be able to equip all of the computers), and in case of equality of this value you want to minimize the total cost of mouses you will buy.
输入格式
The first line contains three integers $a$ , $b$ and $c$ ( $0<=a,b,c<=10^{5}$ ) — the number of computers that only have USB ports, the number of computers, that only have PS/2 ports, and the number of computers, that have both options, respectively.
The next line contains one integer $m$ ( $0<=m<=3·10^{5}$ ) — the number of mouses in the price list.
The next $m$ lines each describe another mouse. The $i$ -th line contains first integer $val_{i}$ ( $1<=val_{i}<=10^{9}$ ) — the cost of the $i$ -th mouse, then the type of port (USB or PS/2) that is required to plug the mouse in.
The next line contains one integer $m$ ( $0<=m<=3·10^{5}$ ) — the number of mouses in the price list.
The next $m$ lines each describe another mouse. The $i$ -th line contains first integer $val_{i}$ ( $1<=val_{i}<=10^{9}$ ) — the cost of the $i$ -th mouse, then the type of port (USB or PS/2) that is required to plug the mouse in.
输出格式
Output two integers separated by space — the number of equipped computers and the total cost of the mouses you will buy.
输入输出样例
输入 #1
2 1 1 4 5 USB 6 PS/2 3 PS/2 7 PS/2
输出 #1
3 14
In the first example you can buy the first three mouses. This way you will equip one of the computers that has only a USB port with a USB mouse, and the two PS/2 mouses you will plug into the computer with PS/2 port and the computer with both ports.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted