Problem Description
You are given two integers, m and k, and a stream of integers. You are tasked to implement a data structure that calculates the MKAverage for the stream. The MKAverage can be calculated using specific steps involving the last m elements of the stream.
Key Insights
- If the number of elements in the stream is less than m, the MKAverage should return -1.
- The MKAverage is calculated by removing the smallest k and largest k elements from the last m elements of the stream.
- The average of the remaining elements is returned, rounded down to the nearest integer.
- Efficiently managing the stream and performing operations on a dynamic size of data requires the use of appropriate data structures.
Space and Time Complexity
Time Complexity: O(n log m) for maintaining the data structure, where n is the number of elements added. Space Complexity: O(m) for storing the last m elements of the stream.
Solution
To solve the problem, we can utilize a combination of a list to maintain the stream of elements and a sorted data structure (such as a balanced binary search tree or two heaps) to efficiently handle the removal of the smallest and largest k elements. The steps are as follows:
- Maintain a list to store the elements added to the stream.
- When calculating the MKAverage, if the number of elements is less than m, return -1.
- Extract the last m elements and sort them.
- Remove the smallest k and largest k elements.
- Calculate the average of the remaining elements and round it down.
This approach allows us to efficiently retrieve the last m elements and calculate the MKAverage.