Order book Yuriy Lyfenko

Simulate a sell-side order book and calculate the cost of a final purchase as fast as possible.

Input

1,000,000 order updates on STDIN, one per line:

  • + <price> <size> – add a new sell order
  • - <position> – delete the order at the given position
  • = <size> – buy <size> shares from the top of the order book

After all updates are processed, buy 1,000 shares from the top of the order book.

Output

Print the total cost of the final 1,000-share purchase to STDOUT.

Order Book Rules

Orders are sorted by price ascending (lower is better). Orders at the same price are sorted by arrival time (earlier first). Position 0 is the best (lowest-price) offer.

The = (buy) operation consumes shares starting from position 0. If an order is fully consumed, it is removed from the book.

Example

Input Order book state
+ 1137 100 (1137,100)
+ 1130 10 (1130,10), (1137,100)
+ 1130 50 (1130,10), (1130,50), (1137,100)
- 0 (1130,50), (1137,100)
+ 1150 200 (1130,50), (1137,100), (1150,200)
= 200 (1150,150)

Total cost of the last buy: 50 * 1130 + 100 * 1137 + 50 * 1150.

Back to listApr 27, 2026 20:43TudyMTudyMScore: 196,784Success
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 27, 2026 20:43190,406128,730,325101,318,0009,118,0002,400,256
2Apr 27, 2026 20:43192,839131,762,89999,864,00011,983,0002,330,624
3Apr 27, 2026 20:43193,329132,227,777102,120,00010,011,0002,301,952
4Apr 27, 2026 20:43194,696133,715,547101,932,00010,992,0002,330,624
5Apr 27, 2026 20:43196,784135,195,780102,121,00012,014,0002,564,096
6Apr 27, 2026 20:43197,631135,917,604105,577,0009,049,0002,318,336
7Apr 27, 2026 20:43198,555130,912,656105,148,00010,014,0002,297,856
8Apr 27, 2026 20:43199,770132,990,747103,881,00011,986,0002,494,464
9Apr 27, 2026 20:43201,450136,403,051103,859,00012,982,0002,322,432