博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2823 Sliding Window
阅读量:6655 次
发布时间:2019-06-25

本文共 1954 字,大约阅读时间需要 6 分钟。

Time Limit: 12000MS   Memory Limit: 65536K
Total Submissions: 50107   Accepted: 14438
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
[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 31 3 -1 -3 5 3 6 7

Sample Output

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

Source

, Ikki

题意:给定长度为N的序列,要求:a[i]~a[i+K-1]中的最小值和最大值

题解:若求最大值,则维护单调队列的递减,用i来计算MAX[i-K+1],也就是Q[head],注意head要>=i-K+1。最小值类似。

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 using namespace std;10 typedef long long LL;11 const int maxn=1000010;12 int a[maxn],N,K;13 int q[maxn],pos[maxn],h,t,now;14 int MAX[maxn],MIN[maxn];15 inline void getmax(){16 h=t=1; q[1]=a[1],pos[1]=1;17 for(int i=2;i<=K-1;i++){18 while(h<=t&&a[i]>=q[t]) t--;19 q[++t]=a[i]; pos[t]=i;20 }21 for(int i=K;i<=N;i++){22 while(h<=t&&a[i]>=q[t]) t--;23 q[++t]=a[i]; pos[t]=i;24 while(pos[h]

 

转载于:https://www.cnblogs.com/CXCXCXC/p/5077739.html

你可能感兴趣的文章
jersey在 spring boot 添加 packages 扫描路径支持
查看>>
PropertyGrid仿VS的属性事件窗口
查看>>
PHP数组排序
查看>>
数据库表 修改原则
查看>>
对sssp项目搭建的补充,总错误处理。
查看>>
花(cnm加强)
查看>>
SQL Server取datetime的日期部分
查看>>
sqlserver 访问oracle
查看>>
三,对于printf函数和C语言编程的初步拓展
查看>>
Centos7更改主机名
查看>>
1004. 成绩排名 (20)
查看>>
用正则检测密码 比如 必须包含 大写 小写字母 数字 长度最小6位
查看>>
Mybatis 向statement传入多个参数
查看>>
个人总结
查看>>
WITH AS 的使用
查看>>
EasyUI-DataGrid之批量删除
查看>>
vue运行原理
查看>>
读书笔记 effective c++ Item 35 考虑虚函数的替代者
查看>>
AForge.NET是一个专门为开发者和研究者基于C#框架设计的视频录像
查看>>
git分支操作
查看>>