Skip to content

Commit 49303f2

Browse files
committed
Sync LeetCode submission Runtime - 655 ms (21.08%), Memory - 151.7 MB (14.71%)
1 parent 8b40239 commit 49303f2

File tree

2 files changed

+81
-0
lines changed

2 files changed

+81
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<p>Design a number container system that can do the following:</p>
2+
3+
<ul>
4+
<li><strong>Insert </strong>or <strong>Replace</strong> a number at the given index in the system.</li>
5+
<li><strong>Return </strong>the smallest index for the given number in the system.</li>
6+
</ul>
7+
8+
<p>Implement the <code>NumberContainers</code> class:</p>
9+
10+
<ul>
11+
<li><code>NumberContainers()</code> Initializes the number container system.</li>
12+
<li><code>void change(int index, int number)</code> Fills the container at <code>index</code> with the <code>number</code>. If there is already a number at that <code>index</code>, replace it.</li>
13+
<li><code>int find(int number)</code> Returns the smallest index for the given <code>number</code>, or <code>-1</code> if there is no index that is filled by <code>number</code> in the system.</li>
14+
</ul>
15+
16+
<p>&nbsp;</p>
17+
<p><strong class="example">Example 1:</strong></p>
18+
19+
<pre>
20+
<strong>Input</strong>
21+
[&quot;NumberContainers&quot;, &quot;find&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;find&quot;, &quot;change&quot;, &quot;find&quot;]
22+
[[], [10], [2, 10], [1, 10], [3, 10], [5, 10], [10], [1, 20], [10]]
23+
<strong>Output</strong>
24+
[null, -1, null, null, null, null, 1, null, 2]
25+
26+
<strong>Explanation</strong>
27+
NumberContainers nc = new NumberContainers();
28+
nc.find(10); // There is no index that is filled with number 10. Therefore, we return -1.
29+
nc.change(2, 10); // Your container at index 2 will be filled with number 10.
30+
nc.change(1, 10); // Your container at index 1 will be filled with number 10.
31+
nc.change(3, 10); // Your container at index 3 will be filled with number 10.
32+
nc.change(5, 10); // Your container at index 5 will be filled with number 10.
33+
nc.find(10); // Number 10 is at the indices 1, 2, 3, and 5. Since the smallest index that is filled with 10 is 1, we return 1.
34+
nc.change(1, 20); // Your container at index 1 will be filled with number 20. Note that index 1 was filled with 10 and then replaced with 20.
35+
nc.find(10); // Number 10 is at the indices 2, 3, and 5. The smallest index that is filled with 10 is 2. Therefore, we return 2.
36+
</pre>
37+
38+
<p>&nbsp;</p>
39+
<p><strong>Constraints:</strong></p>
40+
41+
<ul>
42+
<li><code>1 &lt;= index, number &lt;= 10<sup>9</sup></code></li>
43+
<li>At most <code>10<sup>5</sup></code> calls will be made <strong>in total</strong> to <code>change</code> and <code>find</code>.</li>
44+
</ul>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Approach 1: Two Maps
2+
3+
# Time: O(log n)
4+
# Space: O(n)
5+
6+
from sortedcontainers import SortedSet
7+
from collections import defaultdict
8+
9+
class NumberContainers:
10+
11+
def __init__(self):
12+
self.number_to_indices = defaultdict(SortedSet)
13+
self.index_to_number = {}
14+
15+
16+
def change(self, index: int, number: int) -> None:
17+
if index in self.index_to_number:
18+
previous_num = self.index_to_number[index]
19+
self.number_to_indices[previous_num].remove(index)
20+
if not self.number_to_indices[previous_num]:
21+
del self.number_to_indices[previous_num]
22+
23+
self.index_to_number[index] = number
24+
self.number_to_indices[number].add(index)
25+
26+
27+
def find(self, number: int) -> int:
28+
if number in self.number_to_indices and self.number_to_indices[number]:
29+
return self.number_to_indices[number][0]
30+
return -1
31+
32+
33+
34+
# Your NumberContainers object will be instantiated and called as such:
35+
# obj = NumberContainers()
36+
# obj.change(index,number)
37+
# param_2 = obj.find(number)

0 commit comments

Comments
 (0)