Problem Description
Design a number container system that can insert or replace a number at a given index and return the smallest index for a given number.
Key Insights
- The system must efficiently handle updates and queries.
- Each index can hold a number, and numbers can be replaced.
- To find the smallest index for a given number, we need to maintain a mapping between numbers and their indices.
Space and Time Complexity
Time Complexity: O(1) for change
, O(log k) for find
where k is the number of indices holding the number.
Space Complexity: O(n) where n is the number of indices in the system.
Solution
We can use two hash tables (dictionaries):
index_map
: This maps each index to the number it holds.number_map
: This maps each number to a sorted set of indices that hold that number.
When we call change(index, number)
, we update the index_map
and also update the number_map
. If the index is already occupied, we need to remove the old number from number_map
.
When we call find(number)
, we simply fetch the sorted list of indices from number_map
and return the smallest index.