Problem Description
You are given a stream of records about a particular stock. Each record contains a timestamp and the corresponding price of the stock at that timestamp. Due to the volatile nature of the stock market, the records may not come in order, and some records may be incorrect. Your task is to design an algorithm that updates the price of the stock at a particular timestamp, finds the latest price, maximum price, and minimum price based on the current records.
Key Insights
- Use a hash table to store the latest price for each timestamp.
- Maintain a separate structure to keep track of the maximum and minimum prices efficiently.
- Ensure that the latest price is always retrievable by storing the latest timestamp.
- Correct updates to prices must adjust the maximum and minimum if needed.
Space and Time Complexity
Time Complexity:
- update: O(log n) for maintaining max and min heaps
- current: O(1)
- maximum: O(1)
- minimum: O(1)
Space Complexity: O(n) where n is the number of unique timestamps.
Solution
To solve this problem, we can use a hash table (dictionary) to store the prices associated with each timestamp. A max-heap and min-heap can be utilized to efficiently track the maximum and minimum prices. When an update occurs, we adjust the price in the hash table and update the heaps accordingly. This allows us to quickly retrieve the latest price, maximum price, and minimum price in constant time.