Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Usage Metrics Aggregation Under Constraints

HardPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Usage Metrics Aggregation Under Constraints. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Descript receives a stream of usage events such as edit, export, and transcribe. Implement a bounded-memory aggregator that identifies frequently occurring event types without storing every distinct event.

Use the space-saving algorithm. Maintain at most capacity event types. For each event, increment its tracked estimate if present. Otherwise, replace the currently least frequent tracked event with the new event, assigning the replacement an estimate of minimum_count + 1 and an error bound of minimum_count.

Formal Specification

Implement aggregate_usage(events, capacity), where events is a list of strings representing an event stream and capacity is the maximum number of tracked event types. Return a dictionary mapping each retained event type to [estimated_count, error_bound]. The estimate must be no smaller than the event's true count, and the error bound must represent the maximum possible overestimate introduced by replacement.

The implementation must process events in one pass and use O(capacity) memory. Use a min-heap or an equivalent indexed heap so updates remain efficient. When counts tie, the lexicographically smaller event is considered the minimum.

Constraints

  • 0 <= len(events) <= 10^7
  • 1 <= capacity <= 10^5
  • Each event is a non-empty string of at most 100 characters
  • The result contains at most capacity event types

Function Signature

def aggregate_usage(events, capacity):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output