CF744C.Hongcow Buys a Deck of Cards

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One day, Hongcow goes to the store and sees a brand new deck of nn special cards. Each individual card is either red or blue. He decides he wants to buy them immediately. To do this, he needs to play a game with the owner of the store.

This game takes some number of turns to complete. On a turn, Hongcow may do one of two things:

  • Collect tokens. Hongcow collects 11 red token and 11 blue token by choosing this option (thus, 22 tokens in total per one operation).
  • Buy a card. Hongcow chooses some card and spends tokens to purchase it as specified below.

The ii -th card requires rir_{i} red resources and bib_{i} blue resources. Suppose Hongcow currently has AA red cards and BB blue cards. Then, the ii -th card will require Hongcow to spend max(riA,0)max(r_{i}-A,0) red tokens, and max(biB,0)max(b_{i}-B,0) blue tokens. Note, only tokens disappear, but the cards stay with Hongcow forever. Each card can be bought only once.

Given a description of the cards and their costs determine the minimum number of turns Hongcow needs to purchase all cards.

输入格式

The first line of input will contain a single integer nn ( 1<=n<=161<=n<=16 ).

The next nn lines of input will contain three tokens cic_{i} , rir_{i} and bib_{i} . cic_{i} will be 'R' or 'B', denoting the color of the card as red or blue. rir_{i} will be an integer denoting the amount of red resources required to obtain the card, and bib_{i} will be an integer denoting the amount of blue resources required to obtain the card ( 0<=ri,bi<=1070<=r_{i},b_{i}<=10^{7} ).

输出格式

Output a single integer, denoting the minimum number of turns needed to acquire all the cards.

输入输出样例

  • 输入#1

    3
    R 0 1
    B 1 0
    R 1 1
    

    输出#1

    4
    
  • 输入#2

    3
    R 3 0
    R 2 0
    R 1 0
    

    输出#2

    6
    

说明/提示

For the first sample, Hongcow's four moves are as follows:

  1. Collect tokens
  2. Buy card 11
  3. Buy card 22
  4. Buy card 33

Note, at the fourth step, Hongcow is able to buy card 33 because Hongcow already has one red and one blue card, so we don't need to collect tokens.For the second sample, one optimal strategy is as follows:

  1. Collect tokens
  2. Collect tokens
  3. Buy card 22
  4. Collect tokens
  5. Buy card 33
  6. Buy card 11

At the fifth step, even though Hongcow has a red token, Hongcow doesn't actually need to spend it, since Hongcow has a red card already.

首页