CF762B.USB vs. PS/2

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 mm 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 aa , bb and cc ( 0<=a,b,c<=1050<=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 mm ( 0<=m<=31050<=m<=3·10^{5} ) — the number of mouses in the price list.

The next mm lines each describe another mouse. The ii -th line contains first integer valival_{i} ( 1<=vali<=1091<=val_{i}<=10^{9} ) — the cost of the ii -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.

首页