Cross-Margin Liquidation Engine yenw0d

Simulate a cross-margin derivatives engine: process trades, track account equity, and liquidate undercollateralized accounts as fast as possible.

Accounts are funded with a USD deposit and trade instruments whose prices change over time. When a price update causes an account’s equity to fall below 1% of its total position notional, the account must be liquidated.

Definitions

  • Account equity = balance + Σ(size_i * price_i) - Σ(total_paid_i)
  • Total position notional = Σ(|size_i| * price_i)
  • Total paid for instrument i = signed sum of trade_size * price_at_trade_time across all trades
  • Margin rule: liquidate if equity < total_notional / 100 after any price update

Input

One command per line on STDIN:

  • a <balance> – create account with USD balance (IDs start at 0, incrementing)
  • p <instrument_idx> <price> – set/update instrument price (0-indexed)
  • t <account_idx> <instrument_idx> <size> – trade size (signed) at current price
  • Final line: <account_idx> – query this account and terminate

Output

On each price update, liquidate all accounts violating the margin rule. For each liquidation, print:

liquidate <account_id> <equity> <position_notional>

Liquidation order: largest total position notional first, then account ID descending as tie-breaker. Liquidated accounts have their balance and positions cleared.

For the final query, print <equity> <notional> for the requested account.

Constraints

  • Accounts: <= 100,000
  • Instruments: <= 1,000
  • Price range: 100 to 1,000,000
  • Trade size range: 1 to 10,000

Example

a 100
p 0 100
t 0 0 10
p 0 90
0

Output:

liquidate 0 0 900
0 0
Back to listSep 4, 2026 09:41Victor MerckléVictor MerckléScore: 961Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 4, 2026 09:4382520,636,9059,530,0001,201,0002,117,632stderr
2Sep 4, 2026 09:4382620,602,9889,470,0001,276,0002,117,632stderr
3Sep 4, 2026 09:4391821,838,29610,771,0001,163,0002,117,632stderr
4Sep 4, 2026 09:4394822,154,70011,125,0001,203,0002,117,632stderr
5Sep 4, 2026 09:4396122,280,56811,226,0001,270,0002,117,632stderr
6Sep 4, 2026 09:4397623,259,91911,368,0001,327,0002,117,632stderr
7Sep 4, 2026 09:4399322,775,25411,635,0001,282,0002,117,632stderr
8Sep 4, 2026 09:431,00522,851,11111,844,0001,225,0002,117,632stderr
9Sep 4, 2026 09:431,03623,355,58212,198,0001,270,0002,121,728stderr