ping_fan @ 2018-10-25 13:46:20
#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
long long n,k, a[1000010],tab[4000010],tas[4000010], num[1000001],ma[1000000],mi[1000000], x,y;
void gx(long long p,long long l,long long r)
{
if(x==l&&x==r)
{
tab[p]=tas[p]=a[x];
return;
}
if(x<=(l+r)/2)
gx(p*2,l,(l+r)/2);
if(x>=(l+r)/2+1)
gx(p*2+1,(l+r)/2+1,r);
tab[p]=max(tab[p*2],tab[p*2+1]);
tas[p]=min(tas[p*2],tas[p*2+1]);
return;
}
int main()
{
scanf("%lld%lld",&n,&k);
memset(tas,0x3f,sizeof tas);
for(x=1;x<=n;++x)
tab[x]=-0x7fffffff;
for(x=1;x<=n;++x)
scanf("%lld",num+x);
for(x=1;x<=k;++x)
{
a[x]=num[x];
gx(1,1,n);
}
ma[1]=tab[1];
mi[1]=tas[1];
for(y=k+1;y<=n;)
for(x=1;x<=k&&y<=n;++y,++x)
{
a[x]=num[y];
gx(1,1,n);
ma[y-k+1]=tab[1];
mi[y-k+1]=tas[1];
}
for(x=1;x<=n-k+1;++x)
printf("%lld ",mi[x]);
printf("\n");
for(x=1;x<=n-k+1;++x)
printf("%lld ",ma[x]);
return 0;
}
by yuangq @ 2018-10-25 14:03:08
滋滋