码迷,mamicode.com
首页 > 其他好文 > 详细

2020 BIT冬训-贪心 K - USB vs. PS/2 CodeForces - 762B

时间:2021-02-16 12:07:01      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:div   ring   names   sub   state   pos   set   title   cst   

Problem Description

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.

Input

The first line contains three integers ab and c (0?≤?a,?b,?c?≤?105)  — 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·105)  — the number of mouses in the price list.

The next m lines each describe another mouse. The i-th line contains first integer vali (1?≤?vali?≤?109)  — 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

Output two integers separated by space — the number of equipped computers and the total cost of the mouses you will buy.

Example

Input
2 1 1
4
5 USB
6 PS/2
3 PS/2
7 PS/2
Output
3 14

Note

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.

这题的思路就是先分别满足a和b即单个的需求和花费。再计算都可以的需求和花费。

注意开long long.

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int a,b,c,m,ucnt,pcnt,utemp,ptemp,cnt;
long long u[300005],p[300005],temp,ans;
char t[8];
int main(){
    scanf("%d%d%d%d",&a,&b,&c,&m);
    for(int i=0;i<m;i++){
        scanf("%lld %s",&temp,t);
        if(strcmp(t,"USB")==0)
            u[ucnt++]=temp;
        else
            p[pcnt++]=temp;
    }
    sort(u,u+ucnt);
    sort(p,p+pcnt);
    for(int i=0;i<a;i++){
        if(utemp==ucnt)
            break;
        else{
            cnt++;
            ans+=u[utemp++];
        }
    }
    for(int i=0;i<b;i++){
        if(ptemp==pcnt)
            break;
        else{
            cnt++;
            ans+=p[ptemp++];
        }
    }
    while((ptemp!=pcnt||utemp!=ucnt)&&c){
        cnt++;
        if(ptemp==pcnt)
            ans+=u[utemp++];
        else if(utemp==ucnt)
            ans+=p[ptemp++];
        else{
            ans+=min(p[ptemp],u[utemp]);
            if(p[ptemp]<u[utemp])
                ptemp++;
            else
                utemp++;
        }
        c--;
    }
    printf("%d %lld\n",cnt,ans);
}

 

2020 BIT冬训-贪心 K - USB vs. PS/2 CodeForces - 762B

标签:div   ring   names   sub   state   pos   set   title   cst   

原文地址:https://www.cnblogs.com/mikku39/p/14399005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!