码迷,mamicode.com
首页 > 其他好文 > 详细

滑动窗口

时间:2018-07-08 23:13:02      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:不同   line   就是   数列   rpo   表示   ref   分享图片   nbsp   

入坑题目 

 
技术分享图片
 1 #include <cstdio>
 2 #include <algorithm>
 3 using namespace std;
 4 const int N = 1e5 + 5;
 5 const int inf = 0x3f3f3f3f;
 6 int n, m;
 7 int q1[N], q2[N], h1 = 1, h2 = 1, t1, t2;
 8 
 9 struct A{
10     int x, y;
11 }a[N];
12 bool cmp(A x, A y){
13     return x.x < y.x;
14 }
15 
16 int main(){
17     int ans = inf;
18     scanf("%d%d", &n, &m);
19     for(int i = 1; i <= n; i++) scanf("%d%d", &a[i].x, &a[i].y);
20     sort(a + 1, a + n + 1, cmp);
21     for(int i = 1, j = 0; i <= n; i++){
22         while(h1 <= t1 && q1[h1] < i) h1++;
23         while(h2 <= t2 && q2[h2] < i) h2++;
24         while(a[q1[h1]].y - a[q2[h2]].y < m && j < n){
25             j++;
26             while(h1 <= t1 && a[q1[t1]].y <= a[j].y) t1--;
27             q1[++t1] = j;
28             while(h2 <= t2 && a[q2[t2]].y >= a[j].y) t2--;
29             q2[++t2] = j; 
30         }
31         if(a[q1[h1]].y - a[q2[h2]].y >= m) ans = min(ans, a[j].x - a[i].x);
32     }
33     printf("%d", ans == inf ? -1 : ans);
34     return 0;    
35 }
View Code

 

 
 
先看滑动窗口
打个比方
即您现在有一只宽度固定的窗框
窗外有连绵起伏的山
假设您只能看到窗框中的景色
窗框可以平行于山脉水平滑动
对于窗框的每个位置
求问能看到的最高的山
现在有个数列表示山的高度
3 6 3 2 4 5 2 4 5
窗框宽度为3 
则不同位置能看到的情况从左到右依次有
{3, 6, 3}, {6, 3, 2}, {3, 2, 4}, {2, 4, 5}, {4, 5, 2}, {5, 2, 4}, {2, 4, 5}
暴力求解复杂度O(n*m)(n为山脉长度 m为窗框宽度)
使用单调队列可优化至 O(n)
 
统计一个最大单调队列(存储下标)
把当前区间记作[l, r]
当转换为[l + 1, r + 1]时 删除队列中小于等于l的 插入r
 
一般的变式:
1。窗框条件改变
如入坑题就是窗框条件变为最大数减最小数差值大于d
2。维护答案改变
3。单调内容改变
 

滑动窗口

标签:不同   line   就是   数列   rpo   表示   ref   分享图片   nbsp   

原文地址:https://www.cnblogs.com/hjmmm/p/9281430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!