Sliding Window(RMQ)

本文介绍了一种利用RMQ(Range Minimum Query)算法解决滑动窗口问题的方法,详细解释了如何通过预处理和查询优化计算每一步滑动窗口内的最大值和最小值,适合对数据结构和算法感兴趣的读者。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Sliding Window
Time Limit: 12000MS  Memory Limit: 65536K
Total Submissions: 35974  Accepted: 10648
Case Time Limit: 5000MS

Description

An array of size n ≤ 106 is given to you. 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 the k numbers in the window. Each time the sliding window moves rightwards by one position. Following is an example: 
The array is [1 3 -1 -3 5 3 6 7], and k is 3.
Window positionMinimum valueMaximum value
[1  3  -1] -3  5  3  6  7 -13
 1 [3  -1  -3] 5  3  6  7 -33
 1  3 [-1  -3  5] 3  6  7 -35
 1  3  -1 [-3  5  3] 6  7 -35
 1  3  -1  -3 [5  3  6] 7 36
 1  3  -1  -3  5 [3  6  7]37

Your task is to determine the maximum and minimum values in the sliding window at each position. 

Input

The input consists of two lines. The first line contains two integers n and k which are the lengths of the array and the sliding window. There are n integers in the second line. 

Output

There are two lines in the output. The first line gives the minimum values in the window at each position, from left to right, respectively. The second line gives the maximum values. 

Sample Input

8 3
1 3 -1 -3 5 3 6 7

Sample Output

-1 -3 -3 -3 3 3
3 3 5 5 6 7

 

      题意:

      给出 N(1 ~ 10 ^ 6) 和 K,后给出 N 个数,滑动窗口的宽度为 K,说明每次只能看到 K 个数,窗口从左滑到右,输出每次滑动的最小值和最大值。

 

      思路:

      RMQ。维护区间的最小值 和 最大值。求区间最值问题。O(n log n)的预处理 + O(1)的查询。但是用二维数组保存的话会 MLE,所以要优化一下空间,RMQ更新长度更新到 k 长度的 ans( 2 ^ ans <= k) 即可,不需要更新完全部的长度 n 长度的 ans 值(2 ^ ans <= n),这样的话,可以省略掉第二维来节省空间。

 

      AC:

#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

const int MAX = 1000005;

int n, k, ans;
int Min[MAX], Max[MAX];

void RMQ_init() {
        for (int j = 1; j <= ans; ++j) {
                for (int i = 0; i + (1 << j) - 1 < n; ++i) {
                        Max[i] = max(Max[i], Max[i + (1 << (j - 1))]);
                        Min[i] = min(Min[i], Min[i + (1 << (j - 1))]);
                }
        }
}

int main () {

        while (~scanf("%d%d", &n, &k)) {
                ans = 0;

                for (int i = 0; i < n; ++i) {
                        scanf("%d", &Min[i]);
                        Max[i] = Min[i];
                }

                while ((1 << (ans + 1)) <= k) ++ans;
                RMQ_init();

                for (int i = 0; i <= n - k; ++i) {
                        printf("%d", min(Min[i], Min[i + k - (1 << ans)]));
                        i == (n - k) ? printf("\n") : printf(" ");
                }
                for (int i = 0; i <= n - k; ++i) {
                        printf("%d", max(Max[i], Max[i + k - (1 << ans)]));
                        i == (n - k) ? printf("\n") : printf(" ");
                }
        }

        return 0;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值