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.
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.
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
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted