|
| 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> </p> |
| 17 | +<p><strong class="example">Example 1:</strong></p> |
| 18 | + |
| 19 | +<pre> |
| 20 | +<strong>Input</strong> |
| 21 | +["NumberContainers", "find", "change", "change", "change", "change", "find", "change", "find"] |
| 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> </p> |
| 39 | +<p><strong>Constraints:</strong></p> |
| 40 | + |
| 41 | +<ul> |
| 42 | + <li><code>1 <= index, number <= 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> |
0 commit comments