题库练习 Order Book
← 上一题 下一题 →

A10042 | Order Book

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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 $p_{i}$ , direction $d_{i}$ — buy or sell, and integer $q_{i}$ . This means that the participant is ready to buy or sell $q_{i}$ stocks at price $p_{i}$ for one stock. A value $q_{i}$ 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 $d_{i}$ (either 'B' or 'S'), an integer $p_{i}$ ( $0<=p_{i}<=10^{5}$ ) and an integer $q_{i}$ ( $1<=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 $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
C++ 编辑器
输入
输出