测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10858. USB vs. PS/2

编程题 普及/提高-

题目描述

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 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.

输出格式

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.
上一题 去做题 下一题