480. Sliding Window Median (Hard)

Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.

Examples:

[2,3,4], the median is3

[2,3], the median is(2 + 3) / 2 = 2.5

Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see theknumbers in the window. Each time the sliding window moves right by one position. Your job is to output the median array for each window in the original array.

For example,

Given nums =[1,3,-1,-3,5,3,6,7], and k = 3.

Window position                Median
---------------               -----
[1  3  -1] -3  5  3  6  7       1
 1 [3  -1  -3] 5  3  6  7       -1
 1  3 [-1  -3  5] 3  6  7       -1
 1  3  -1 [-3  5  3] 6  7       3
 1  3  -1  -3 [5  3  6] 7       5
 1  3  -1  -3  5 [3  6  7]      6

Therefore, return the median sliding window as[1,-1,-1,3,5,6].

Note:

You may assume k is always valid, ie: 1 ≤ k ≤ input array's size for non-empty array.

Solution 1: Find median each time with multiset

vector<double> medianSlidingWindow(vector<int>& nums, int k) {
    vector<double> res;
    multiset<int> s(nums.begin(), nums.begin()+k-1);

    for (int i = k-1; i < nums.size(); ++i) {
        s.insert(nums[i]);
        auto mid = next(s.begin(), (k-1)/2);
        res.push_back(k%2 ? *mid:((long)*mid+*next(mid,1))/2.0);
        s.erase(s.lower_bound(nums[i-k+1]));
    }
    return res;
}

Solution 2: using multiset and updating middle-iterator

vector<double> medianSlidingWindow(vector<int>& nums, int k) {
    vector<double> res;
    multiset<int> s(nums.begin(), nums.begin()+k);
    auto mid = next(s.begin(), (k-1)/2);
    for (int i = k; i < nums.size(); ++i) {
        res.push_back(k%2 ? *mid:((long)*mid+*next(mid,1))/2.0);
        s.insert(nums[i]);
        if (nums[i] < *mid) --mid;
        if (nums[i-k] <= *mid) ++mid;
        s.erase(s.lower_bound(nums[i-k]));
    }
    res.push_back(k%2 ? *mid:((long)*mid+*next(mid,1))/2.0);
    return res;
}

results matching ""

    No results matching ""