CF572B.Order Book

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In this task you need to process a set of stock exchange orders and use them to create order book.

An order is an instruction of some participant to buy or sell stocks on stock exchange. The order number ii has price pip_{i} , direction did_{i} — buy or sell, and integer qiq_{i} . This means that the participant is ready to buy or sell qiq_{i} stocks at price pip_{i} for one stock. A value qiq_{i} is also known as a volume of an order.

All orders with the same price pp and direction dd are merged into one aggregated order with price pp and direction dd . The volume of such order is a sum of volumes of the initial orders.

An order book is a list of aggregated orders, the first part of which contains sell orders sorted by price in descending order, the second contains buy orders also sorted by price in descending order.

An order book of depth ss contains ss best aggregated orders for each direction. A buy order is better if it has higher price and a sell order is better if it has lower price. If there are less than ss aggregated orders for some direction then all of them will be in the final order book.

You are given nn stock exhange orders. Your task is to print order book of depth ss for these orders.

输入格式

The input starts with two positive integers nn and ss ( 1<=n<=1000,1<=s<=501<=n<=1000,1<=s<=50 ), the number of orders and the book depth.

Next nn lines contains a letter did_{i} (either 'B' or 'S'), an integer pip_{i} ( 0<=pi<=1050<=p_{i}<=10^{5} ) and an integer qiq_{i} ( 1<=qi<=1041<=q_{i}<=10^{4} ) — direction, price and volume respectively. The letter 'B' means buy, 'S' means sell. The price of any sell order is higher than the price of any buy order.

输出格式

Print no more than 2s2s lines with aggregated orders from order book of depth ss . The output format for orders should be the same as in input.

输入输出样例

  • 输入#1

    6 2
    B 10 3
    S 50 2
    S 40 1
    S 50 6
    B 20 4
    B 25 10
    

    输出#1

    S 50 8
    S 40 1
    B 25 10
    B 20 4
    

说明/提示

Denote (x, y) an order with price xx and volume yy . There are 3 aggregated buy orders (10, 3), (20, 4), (25, 10) and two sell orders (50, 8), (40, 1) in the sample.

You need to print no more than two best orders for each direction, so you shouldn't print the order (10 3) having the worst price among buy orders.

首页