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 15, 2024 16:34__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 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
2Feb 15, 2024 17:2600000Error: No answer to stdout. Died or killed?
3Feb 15, 2024 17:2600000Error: expected "1892433 ", got "1907207"
4Feb 15, 2024 17:2600000Error: expected "1686181 ", got "2080759"
5Feb 15, 2024 17:2600000Error: No answer to stdout. Died or killed?
6Feb 15, 2024 17:2600000Error: expected "669590 ", got "672777"
7Feb 15, 2024 17:2600000Error: No answer to stdout. Died or killed?
8Feb 15, 2024 17:2600000Error: No answer to stdout. Died or killed?
9Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
10Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
11Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
12Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
13Feb 15, 2024 17:2700000Error: expected "798859 ", got "821142"
14Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
15Feb 15, 2024 17:2500000Error: No answer to stdout. Died or killed?
16Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
17Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
18Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
19Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
20Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
21Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
22Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
23Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
24Feb 15, 2024 17:2700000Error: No answer to stdout. Died or killed?
25Feb 15, 2024 17:2800000Error: No answer to stdout. Died or killed?
26Feb 15, 2024 17:2800000Error: expected "1438448 ", got "1508856"
27Feb 15, 2024 17:2800000Error: expected "1318648 ", got "1319665"
28Feb 15, 2024 17:2500000Error: No answer to stdout. Died or killed?
29Feb 15, 2024 16:3400000Error: No answer to stdout. Died or killed?
30Feb 15, 2024 16:3400000Error: No answer to stdout. Died or killed?
31Feb 15, 2024 16:3400000Error: No answer to stdout. Died or killed?
32Feb 15, 2024 16:3400000Error: No answer to stdout. Died or killed?
33Feb 15, 2024 16:3400000Error: No answer to stdout. Died or killed?
34Feb 15, 2024 16:3500000Error: expected "1938815 ", got "1938725"
35Feb 15, 2024 16:3500000Error: expected "1305243 ", got "1305549"
36Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
37Feb 15, 2024 16:3500000Error: expected "955463 ", got "954832"
38Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
39Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
40Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
41Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
42Feb 15, 2024 16:3500000Error: expected "1218484 ", got "1221277"
43Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
44Feb 15, 2024 16:3500000Error: expected "1727583 ", got "1752447"
45Feb 15, 2024 16:3500000Error: expected "3008809 ", got "3034408"
46Feb 15, 2024 16:3500000Error: No answer to stdout. Died or killed?
47Feb 15, 2024 16:3500000Error: expected "1974925 ", got "1972901"
48Feb 15, 2024 16:3600000Error: No answer to stdout. Died or killed?
49Feb 15, 2024 16:3600000Error: expected "1704060 ", got "1707003"
50Feb 15, 2024 17:2500000Error: No answer to stdout. Died or killed?
51Feb 15, 2024 17:2500000Error: No answer to stdout. Died or killed?
52Feb 15, 2024 17:2749,680102,742,81228,814,32802,195,456
53Feb 15, 2024 17:2751,91284,084,05930,109,17502,314,240
54Feb 15, 2024 17:2752,550110,206,60130,479,20902,187,264