记录编号 239281 评测结果 AAAAAAAAA
题目名称 [POJ 2823]滑动窗口 最终得分 100
用户昵称 Gravatar【离开·再见】星裔·自由蒂兰 是否通过 通过
代码语言 C++ 运行时间 0.678 s
提交时间 2016-03-20 09:45:24 内存使用 11.76 MiB
显示代码纯文本
#include<cstdio>
#include<deque>
#include<iostream>
#include<cstring>
using namespace std;
const int maxn=1000005;
int ch[maxn],hehe[maxn],haha[maxn];
deque<int> q1,q2;
void Init();
void Insert(int);
int main()
{
	freopen("window.in","r",stdin);
	freopen("window.out","w",stdout);
	Init();
	return 0;
}
void Init()
{
	int n,k;
	scanf("%d%d",&n,&k);
	for(int i=1;i<=n;i++)
	{
		scanf("%d",&ch[i]);
	}
	if(k>n)k=n;
	for(int i=1;i<k;i++)Insert(i);
	for(int i=k;i<=n;i++)
	{
		Insert(i);
		if(!q1.empty()&&q1.front()<i-k+1)q1.pop_front();
		if(!q2.empty()&&q2.front()<i-k+1)q2.pop_front();
		haha[i-k+1]=ch[q1.front()];
		hehe[i-k+1]=ch[q2.front()];
	}
	for(int i=1;i<=n-k;i++)
	{
		printf("%d ",hehe[i]);
	}
	printf("%d\n",hehe[n-k+1]);
	for(int i=1;i<=n-k;i++)
	{
		printf("%d ",haha[i]);
	}
	printf("%d\n",haha[n-k+1]);
}
void Insert(int x)
{
	while(!q1.empty()&&ch[q1.back()]<=ch[x])q1.pop_back();
	q1.push_back(x);
	while(!q2.empty()&&ch[q2.back()]>=ch[x])q2.pop_back();
	q2.push_back(x);
}