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 i has price pi , direction di — buy or sell, and integer qi . This means that the participant is ready to buy or sell qi stocks at price pi for one stock. A value qi is also known as a volume of an order.
All orders with the same price p and direction d are merged into one aggregated order with price p and direction d . 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 s contains s 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 s aggregated orders for some direction then all of them will be in the final order book.
You are given n stock exhange orders. Your task is to print order book of depth s for these orders.
输入格式
The input starts with two positive integers n and s ( 1<=n<=1000,1<=s<=50 ), the number of orders and the book depth.
Next n lines contains a letter di (either 'B' or 'S'), an integer pi ( 0<=pi<=105 ) and an integer qi ( 1<=qi<=104 ) — 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 2s lines with aggregated orders from order book of depth s . 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 x and volume y . 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.