CDOJ Sliding Window 线段树(nlogn)或双端队列(n) 模板

题目链接

L - Sliding Window

Time Limit:6000MS     Memory Limit:131072KB     64bit IO Format:%lld & %llu

Submit Status Practice UESTC 201

Appoint description: 
System Crawler  (2016-04-24)

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

Hint

The data used in this problem is unofficial data prepared by love8909. So any mistake here does not imply mistake in the offcial judge data.

给定一个大小已知的数组以及一个大小已知的滑动窗口,窗口每个时刻向后移动一位,求出每个时刻窗口中数字的最大值和最小值。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <algorithm>
#include <set>
using namespace std;
typedef long long ll;
typedef unsigned long long Ull;
#define MM(a,b) memset(a,b,sizeof(a));
const double eps = 1e-10;
const int inf = 0x3f3f3f3f;
const double pi=acos(-1);
const int maxn=1000000;
int a[maxn+10],deq[maxn+10],ans[maxn+10],n,k;

void minq()
{
    int s=1,t=0;
    for(int i=1;i<=n;i++)
    {
        while(s<=t&&a[deq[t]]>a[i]) t--;//这个地方加不加等号貌似都可以
        deq[++t]=i;
        if(i>=k)
        {
            ans[i-k+1]=a[deq[s]];
            if(deq[s]==i-k+1)
                s++;
        }
    }
    for(int i=1;i<n-k+1;i++)
        printf("%d ",ans[i]);
    printf("%d\n",ans[n-k+1]);
}

void maxq()
{
    int s=1,t=0;
    for(int i=1;i<=n;i++)
    {
        while(s<=t&&a[deq[t]]<a[i]) t--;
        deq[++t]=i;
        if(i>=k)
        {
            ans[i-k+1]=a[deq[s]];
            if(deq[s]==i-k+1)
                s++;
        }
    }
     for(int i=1;i<n-k+1;i++)
        printf("%d ",ans[i]);
    printf("%d\n",ans[n-k+1]);
}

int main()
{
    while(~scanf("%d %d",&n,&k))
    {
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        minq();
        maxq();
    }
    return 0;
}

  

时间: 2024-12-13 19:33:02

CDOJ Sliding Window 线段树(nlogn)或双端队列(n) 模板的相关文章

关于双端队列 deque 模板 &amp;&amp; 滑动窗口 (自出)

嗯... deque 即为双端队列,是c++语言中STL库中提供的一个东西,其功能比队列更强大,可以从队列的头与尾进行操作... 但是它的操作与队列十分相似,详见代码1: 1 #include <cstdio> 2 #include <iostream> 3 #include <deque> 4 //实际上,引用queue头文件也可以,里面包含了deque头文件 5 6 using namespace std; 7 8 deque<int> dq; //定义

POJ 2823 Sliding Window 线段树区间求和问题

题目链接 线段树区间求和问题,维护一个最大值一个最小值即可,线段树要用C++交才能过. 注意这道题不是求三个数的最大值最小值,是求k个的. 还有一种做法是单调队列,耗时更少. #include <iostream> #include <cstdio> #include <cmath> #include <cstring> #include <algorithm> #define N 1000005 using namespace std; int

PKU 2823 Sliding Window(线段树||RMQ||单调队列)

#include<cstdio> #include<algorithm> #define maxn 1000005 #define inf 0x3f3f3f3f using namespace std; int Segtree_min[maxn<<2],Segtree_max[maxn<<2]; int n,k,value; int begin,end; //每个结点保存该区间线段的最大/小值 void Build(int l,int r,int pos)

POJ 2823 Sliding Window (线段树区间查询)

题目大意: 解题思路: 代码: 1 # include<iostream> 2 # include<cstdio> 3 4 using namespace std; 5 6 # define inf 99999999 7 # define MAX 1000010 8 9 struct Segtree 10 { 11 int left, right; 12 int mx, mn; 13 }tree[MAX*4]; 14 15 int a[MAX]; 16 int maxx,minx;

POJ 2482 Stars in Your Window 线段树+离散化+扫描线

题面据说很美- 每个星星可以根据在窗口的左下角和右上角两个位置建立两条扫描线,之后就是简单的区间增减和求最大值操作了. 注意要处理在边界上的星星是不算的情况,其实只要把左右边界分别增减一个eps即可. #include <cstdio> #include <cstring> #include <iostream> #include <map> #include <set> #include <vector> #include <

POJ2823 Sliding Window【双端队列】

求连续的k个中最大最小值,k是滑动的,每次滑动一个 用双端队列维护可能的答案值 如果要求最小值,则维护一个单调递增的序列 对一开始的前k个,新加入的如果比队尾的小,则弹出队尾的,直到新加入的比队尾大,加入队尾 从第k+1个到最后一个,按照上述规则,压入新数,然后弹出队首元素(满足队首元素对应原来序列的位置必须在视窗内,否则,继续弹出下一个) #include <cstdio> #include <cstdlib> #include <iostream> #include

单调队列(双端队列) poj2823 hdoj3415 hdoj3530

单调队列及其应用(双端队列) 单调队列,望文生义,就是指队列中的元素是单调的.如:{a1,a2,a3,a4--an}满足a1<=a2<=a3--<=an,a序列便是单调递增序列.同理递减队列也是存在的. 单调队列的出现可以简化问题,队首元素便是最大(小)值,这样,选取最大(小)值的复杂度便为o(1),由于队列的性质,每个元素入队一次,出队一次,维护队列的复杂度均摊下来便是o(1). 如何维护单调队列呢,以单调递增序列为例: 1.如果队列的长度一定,先判断队首元素是否在规定范围内,如果超范

【C/C++学院】0828-STL入门与简介/STL容器概念/容器迭代器仿函数算法STL概念例子/栈队列双端队列优先队列/数据结构堆的概念/红黑树容器

STL入门与简介 #include<iostream> #include <vector>//容器 #include<array>//数组 #include <algorithm>//算法 using namespace std; //实现一个类模板,专门实现打印的功能 template<class T> //类模板实现了方法 class myvectorprint { public: void operator ()(const T &

【SGU】271. Book Pile(双端队列模拟)

一摞书,2个操作,一个操作是在书堆上加一本,第二个将前K个书翻转 看别人用Splay树做的,但是可以用双端队列模拟,因为K个书之后的书位置已经定下来了,所以只需要记录在队列头加书还是尾加书 #include<cstdio> #include<string> #include<algorithm> #include<queue> #include<stack> #include<cstring> #include<iostream