[原创]POJ 2823 Sliding Window [单调队列]【杂类】
[原创]POJ 2823 Sliding Window [单调队列]【杂类】
2016-10-31 17:37:05 Tabris_ 阅读数:227
博客爬取于2020-06-14 22:42:55
以下为正文
版权声明:本文为Tabris原创文章,未经博主允许不得私自转载。
https://blog.csdn.net/qq_33184171/article/details/52984325
题目链接:http://poj.org/problem?id=2823
--------------------------------.
Sliding Window
Time Limit: 12000MS Memory Limit: 65536K
Total Submissions: 55854 Accepted: 16062
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 position Minimum value Maximum value
: | : | : |
---|---|---|
Window position | Minimum value | Maximum value |
[1 3 -1] -3 5 3 6 7 | -1 | 3 |
1 [3 -1 -3] 5 3 6 7 | -3 | 3 |
1 3 [-1 -3 5] 3 6 7 | -3 | 5 |
1 3 -1 [-3 5 3] 6 7 | -3 | 5 |
1 3 -1 -3 [5 3 6] 7 | 3 | 6 |
1 3 -1 -3 5 [3 6 7] | 3 | 7 |
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的数列中长度为k的邻近区间的最大值和最小值;
解题思路:
这道题就是单调队列的入门题目
但是据说线段树也可以过 但是不仅代码量大 而且复杂度也不是最优的。
以为这个求得区间与区间之间存在邻近的关系 所以想到用单调队列优化的思路这样的话可以把复杂度降到O(n)
维护的时候只要维护一下下标就行了
单调队列的数组实现其实和尺追法差不多,觉得不好写的话用手过几遍数据强化一下就行.
附本题代码
----------------------.
1 | # include <iostream> |