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 listFeb 18, 2024 05:21Tejas G.Tejas G.Error
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Feb 18, 2024 05:2100000Error: expected "2831685 ", got "2937532 "
2Feb 18, 2024 05:2200000Error: expected "4104195 ", got "2407248 "
3Feb 18, 2024 05:2200000Error: expected "2001288 ", got "1199979 "
4Feb 18, 2024 05:2200000Error: expected "1501707 ", got "2166208 "
5Feb 18, 2024 05:2200000Error: expected "3071677 ", got "3283735 "
6Feb 18, 2024 05:2200000Error: expected "2540074 ", got "142576 "
7Feb 18, 2024 05:2200000Error: expected "828324 ", got "932654 "
8Feb 18, 2024 05:2200000Error: expected "2593035 ", got "2247962 "
9Feb 18, 2024 05:2100000Error: expected "629403 ", got "610332 "
10Feb 18, 2024 05:2100000Error: expected "2128960 ", got "2249140 "
11Feb 18, 2024 05:2100000Error: expected "2079150 ", got "2044242 "
12Feb 18, 2024 05:2100000Error: expected "656616 ", got "928609 "
13Feb 18, 2024 05:2100000Error: expected "1373733 ", got "1374900 "
14Feb 18, 2024 05:2100000Error: expected "2033477 ", got "2262341 "
15Feb 18, 2024 05:2127,69994,735,58916,065,13302,252,800
16Feb 18, 2024 05:2127,77586,195,17116,109,49602,260,992
17Feb 18, 2024 05:2227,88161,365,57416,170,92402,252,800
18Feb 18, 2024 05:2127,96682,823,79916,220,11302,244,608
19Feb 18, 2024 05:2227,96989,325,42516,221,87202,256,896
20Feb 18, 2024 05:2228,63084,202,41716,605,61702,252,800