思路:
正解多个单调队列;
但是我用树套树水了过去;
来,上代码:
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm> using namespace std; struct ReType {
int mi,ma;
}; struct TreeNodeType {
int l,r,lc,rc,ma,mi,mid;
};
struct TreeNodeType tree[(<<)*]; int tot=,a,b,n,root[],blo[],ans=0x7fffffff,X; inline ReType node(int k,int f)
{
ReType no;
no.mi=k,no.ma=f;
return no;
} inline void in(int &now)
{
char Cget=getchar();now=;
while(Cget>''||Cget<'') Cget=getchar();
while(Cget>=''&&Cget<='')
{
now=now*+Cget-'';
Cget=getchar();
}
} inline void tree_build(int &now,int l,int r)
{
now=++tot,tree[now].l=l,tree[now].r=r;
if(l==r)
{
in(tree[now].mi);
tree[now].ma=tree[now].mi;
return ;
}
tree[now].mid=l+r>>;
tree_build(tree[now].lc,l,tree[now].mid);
tree_build(tree[now].rc,tree[now].mid+,r);
tree[now].mi=min(tree[tree[now].lc].mi,tree[tree[now].rc].mi);
tree[now].ma=max(tree[tree[now].lc].ma,tree[tree[now].rc].ma);
} inline ReType tree_query(int now,int l,int r)
{
if(tree[now].l==l&&tree[now].r==r) return node(tree[now].mi,tree[now].ma);
if(r<=tree[now].mid) return tree_query(tree[now].lc,l,r);
else if(l>tree[now].mid) return tree_query(tree[now].rc,l,r);
else
{
ReType la=tree_query(tree[now].lc,l,tree[now].mid);
ReType ra=tree_query(tree[now].rc,tree[now].mid+,r);
return node(min(la.mi,ra.mi),max(la.ma,ra.ma));
}
} inline void tree_build_(int &now,int l,int r)
{
now=++tot,tree[now].l=l,tree[now].r=r;
if(l==r)
{
ReType an=tree_query(root[l],X-n+,X);
tree[now].mi=an.mi,tree[now].ma=an.ma;
return ;
}
tree[now].mid=l+r>>;
tree_build_(tree[now].lc,l,tree[now].mid);
tree_build_(tree[now].rc,tree[now].mid+,r);
tree[now].mi=min(tree[tree[now].lc].mi,tree[tree[now].rc].mi);
tree[now].ma=max(tree[tree[now].lc].ma,tree[tree[now].rc].ma);
} int main()
{
in(a),in(b),in(n);
for(int i=;i<=a;i++) tree_build(root[i],,b);
int pos=tot;
for(int i=n;i<=b;i++)
{
tot=pos,X=i,tree_build_(blo[i],,a);
for(int j=n;j<=a;j++)
{
ReType an=tree_query(blo[i],j-n+,j);
ans=min(ans,an.ma-an.mi);
}
}
cout<<ans;
return ;
}