博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2823 线段树
阅读量:5133 次
发布时间:2019-06-13

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

An array of size n ≤ 10 6 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


 

线段树水题,但这道题拿线段树是卡过的,拿G++提交就会超时,所以必须用C++提交。

 

#include
#include
#include
#include
using namespace std;const int MAXN = 1000005;int datain[MAXN];//下标从1开始,边的编号。int Min[MAXN*2],Max[MAXN*2];//线段树的结点编号从0开始。int lnext[MAXN*2],rnext[MAXN*2];int l[MAXN*2],r[MAXN*2];int tot;int buildTree(int ll,int rr){ int cur=tot++; l[cur]=ll; r[cur]=rr; if(ll==rr) { Min[cur] = Max[cur] = datain[ll]; //printf("%d**\n",seg[cur]); lnext[cur]=rnext[cur]=-1; return cur; } int mid=(ll+rr)>>1; lnext[cur]=buildTree(ll,mid); rnext[cur]=buildTree(mid+1,rr); Min[cur]=min(Min[lnext[cur]],Min[rnext[cur]]); Max[cur]=max(Max[lnext[cur]],Max[rnext[cur]]); return cur;}int qmin(int ll,int rr,int cur){ //printf("%d %d %d\n",cur,l[cur],r[cur]); if(l[cur]==ll&&r[cur]==rr) return Min[cur]; int mid=(l[cur]+r[cur])/2; if(ll>=mid+1) return qmin(ll,rr,rnext[cur]); else if(rr
=mid+1) return qmax(ll,rr,rnext[cur]); else if(rr
n) k=n; for(int i=1; i<=n; i++) { scanf("%d",&datain[i]); } int Min,Max; buildTree(1,n); for(int i=1; i<=n-k+1; i++) printf("%d ",qmin(i,i+k-1,0)); puts(""); for(int i=1; i<=n-k+1; i++) printf("%d ",qmax(i,i+k-1,0)); puts(""); }}

转载于:https://www.cnblogs.com/lastone/p/5297941.html

你可能感兴趣的文章
WPF知识总结
查看>>
浏览器如何渲染页面
查看>>
如何学习别人的代码(转)
查看>>
分布式系统中的必备良药 —— 全局唯一单据号生成
查看>>
【转】ArcGIS Server 10.1动态图层 以及Windows Phone/Silverlight客户端实现
查看>>
ES6学习笔记(三)-正则扩展
查看>>
关于计算机编译原理
查看>>
前端运动物体程序流笔记
查看>>
面向对象(异常)
查看>>
HTTP&HTTPS、GET&POST
查看>>
Program Size
查看>>
dex
查看>>
关于BitmapFactory.decodeStream(is)方法无法正常解码为Bitmap对象的解决方法
查看>>
ajax获取的全部是object,我要获取的是json
查看>>
js点击button按钮跳转到另一个新页面
查看>>
sqlite 时间函数及时间处理
查看>>
HDU 1074 状态压缩DP 第一次写 多多指教
查看>>
虚拟环境更新HA
查看>>
UCOS2系统内核讲述(三)_TCB任务控制块
查看>>
Oracle表空间 ORA-01653:
查看>>