Design a Number Container System — LeetCode 2349 Python Solution
MediumDesignHash TableOrdered SetHeap (Priority Queue)
- Problem
- #2349
- Pattern
- Heap / Priority Queue
- Reading time
- 5 min
- Source
- leetcode.com
The problem
Design a number container system that can do the following: Insert or Replace a number at the given index in the system. Return the smallest index for the given number in the system.
Example
- Input
- ["NumberContainers", "find", "change", "change", "change", "change", "find", "change", "find"]
- Output
- [null, -1, null, null, null, null, 1, null, 2]
- Explanation
- NumberContainers nc = new NumberContainers();
Python solution
Python
class NumberContainers:
def __init__(self):
self.d = {}
self.g = defaultdict(SortedSet)
def change(self, index: int, number: int) -> None:
if index in self.d:
old_number = self.d[index]
self.g[old_number].remove(index)
self.d[index] = number
self.g[number].add(index)
def find(self, number: int) -> int:
ids = self.g[number]
return ids[0] if ids else -1
# Your NumberContainers object will be instantiated and called as such:
# obj = NumberContainers()
# obj.change(index,number)
# param_2 = obj.find(number)Complexity
| Measure | Complexity |
|---|---|
| Time | O(\log n) |
| Space | O(n), where n is the number of numbers auxiliary |
Pattern: Heap / Priority Queue
Keep only the best k elements, or always pull the smallest, in log time. LeetCode 2349. Design a Number Container System is filed here because LeetCode tags it Heap (Priority Queue), which is the vocabulary this hub collects.
The heap / priority queue guide has the Python template for the pattern and the 163 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 2349. Design a Number Container System?
- LeetCode 2349. Design a Number Container System is rated Medium on LeetCode.
- What is the time complexity of LeetCode 2349. Design a Number Container System?
- The Python solution on this page runs in O(\log n).
- What is the space complexity of LeetCode 2349. Design a Number Container System?
- The Python solution on this page uses O(n), where n is the number of numbers auxiliary space.
- What topics does LeetCode 2349. Design a Number Container System cover?
- LeetCode 2349. Design a Number Container System is tagged Design, Hash Table, Ordered Set and Heap (Priority Queue) on LeetCode.