Problem Description
Implement an iterator for a run-length encoded array that allows you to exhaust a specified number of elements and return the last element exhausted. If there are no elements left, return -1.
Key Insights
- The run-length encoding consists of pairs of counts and values.
- You need to keep track of the current position in the encoded array.
- When calling the next function, you need to check if there are enough elements left to exhaust.
- If the required number of elements to exhaust exceeds the available count, return -1.
Space and Time Complexity
Time Complexity: O(1) for each call to next, as it processes a fixed number of operations regardless of input size.
Space Complexity: O(1) since we are using a fixed amount of extra space.
Solution
The solution involves using a class RLEIterator
to manage the state of the iterator and the current position in the encoded array. The class will have:
- A constructor to initialize the encoded array and set the current index and available count.
- A
next
method that takes an integern
and exhaustsn
elements, updating the current index and count accordingly.
The algorithm iterates through the encoded array, decrementing the count of the current value until the required elements are exhausted or the array is fully processed.