洛谷.1110.[ZJOI2007]报表统计(Splay Heap)
题目链接
附纯SplayTLE代码及主要思路:
/*
可以看做序列有n段,Insert是每次在每一段最后插入一个元素
只有插入,没有删除,所以插入一个元素对于询问1影响的只有该元素与前边一个元素(同段)、下一段的开头元素
故只需删掉该段最后元素与下一段开头元素的差,再加入新元素与下一段开头的差即可 -> 记录差值
对于询问2,将值在平衡树中插入,能有影响的就是相邻两个值了(最小值只可能从中产生) -> 记录值
所以对于每一段只需记录开头与结尾元素,剩下的就是插入删除了
询问2中相邻两个值是前驱后继!不能直接用子节点!
*/
#include<cstdio>
#include<cctype>
#include<algorithm>
const int N=5e5+5,M=N*3;
int n,q,st[N],ed[N],Min2=1e9;
struct Splay_Tree
{
int size,root,son[M][2],fa[M],sz[M],cnt[M],t[M];
inline void Update(int rt)
{
sz[rt]=sz[son[rt][0]]+sz[son[rt][1]]+cnt[rt];
}
void Rotate(int x,int &k)
{
int a=fa[x],b=fa[a],l=son[a][1]==x,r=l^1;
if(a==k) k=x;
else son[b][son[b][1]==a]=x;
fa[x]=b, fa[a]=x, fa[son[x][r]]=a;
son[a][l]=son[x][r], son[x][r]=a;
Update(a), Update(x);
}
void Splay(int x,int &k)
{
while(x!=k)
{
int a=fa[x],b=fa[a];
if(a!=k) (son[a][1]==x^son[b][1]==a)?Rotate(x,k):Rotate(a,k);
Rotate(x,k);
}
}
void Update_Min2(int k,int w)
{
while(son[k][w]) k=son[k][w];
Min2=std::min(Min2,std::abs(t[root]-t[k]));
}
void Insert(int v,int k,bool opt)
{
int f=0;
while(t[k]!=v && k) f=k,k=son[k][v>t[k]];
if(k) ++cnt[k],++sz[k];
else
{
k=++size, sz[k]=cnt[k]=1, t[k]=v, fa[k]=f;
if(f) son[f][v>t[f]]=k;
}
Splay(k,root);
if(!(opt*Min2)) return;
if(cnt[k]>1) Min2=0;
if(son[k][0]) Update_Min2(son[k][0],1);
if(son[k][1]) Update_Min2(son[k][1],0);
}
void Get_Rank(int v,int k)
{
while(t[k]!=v) k=son[k][v>t[k]];
Splay(k,root);
}
void Delete(int v)
{
Get_Rank(v,root);
int k=root;
if(cnt[k]>1) --sz[k],--cnt[k];
else if(son[k][0]*son[k][1])
{
int p=son[k][0];root=k=son[k][1];
while(son[k][0]) k=son[k][0];
fa[p]=k, son[k][0]=p, sz[k]+=sz[p];
Splay(k,root);
}
else root=son[k][0]|son[k][1];
fa[root]=0;
}
int Query_Min()
{
int k=root;
while(son[k][0]) k=son[k][0];
return t[k];
}
}t1,t2;
inline int read()
{
int now=0,f=1;register char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;
for(;isdigit(c);now=now*10+c-'0',c=getchar());
return now*f;
}
void Ins()
{
int p=read(),v=read();
if(p!=n)
t1.Delete(std::abs(st[p+1]-ed[p])),
t1.Insert(std::abs(st[p+1]-v),t1.root,0);
t1.Insert(std::abs(ed[p]-v),t1.root,0);
ed[p]=v;
if(Min2) t2.Insert(v,t2.root,1);
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("1110.in","r",stdin);
#endif
n=read(),q=read();
st[1]=ed[1]=read(),t2.Insert(st[1],t2.root,1);
for(int i=2;i<=n;++i)
st[i]=ed[i]=read(),t1.Insert(std::abs(st[i]-st[i-1]),t1.root,0),t2.Insert(st[i],t2.root,1);
char s[20];int p,v;
while(q--)
{
scanf("%s",s);
if(s[0]=='I') Ins();
else if(s[4]=='G') printf("%d\n",t1.Query_Min());
else printf("%d\n",Min2);
}
return 0;
}
AC:
/*
对于询问1,直接用带修改的堆维护即可,能不用Splay就不用了
对于堆的修改,可以将要修改的元素另插入一个堆,当两个堆的堆顶相等时,就都弹出
对于询问2,需要前驱后继,还是用平衡树
询问2中相邻两个值是前驱后继!不能直接用子节点!
*/
#include<cstdio>
#include<cctype>
#include<algorithm>
const int N=5e5+5,M=N*3;
int n,q,st[N],ed[N],Min2=1e9;
struct Splay_Tree
{
int size,root,son[M][2],fa[M],sz[M],cnt[M],t[M];
inline void Update(int rt)
{
sz[rt]=sz[son[rt][0]]+sz[son[rt][1]]+cnt[rt];
}
void Rotate(int x,int &k)
{
int a=fa[x],b=fa[a],l=son[a][1]==x,r=l^1;
if(a==k) k=x;
else son[b][son[b][1]==a]=x;
fa[x]=b, fa[a]=x, fa[son[x][r]]=a;
son[a][l]=son[x][r], son[x][r]=a;
Update(a), Update(x);
}
void Splay(int x,int &k)
{
while(x!=k)
{
int a=fa[x],b=fa[a];
if(a!=k) (son[a][1]==x^son[b][1]==a)?Rotate(x,k):Rotate(a,k);
Rotate(x,k);
}
}
inline void Update_Min2(int k,int w)
{
while(son[k][w]) k=son[k][w];
Min2=std::min(Min2,std::abs(t[root]-t[k]));
}
void Insert(int v,int k)
{
int f=0;
while(t[k]!=v && k) f=k,k=son[k][v>t[k]];
if(k) ++cnt[k],++sz[k];
else
{
k=++size, sz[k]=cnt[k]=1, t[k]=v, fa[k]=f;
if(f) son[f][v>t[f]]=k;
}
Splay(k,root);
if(!Min2) return;
if(cnt[k]>1) Min2=0;
if(son[k][0]) Update_Min2(son[k][0],1);
if(son[k][1]) Update_Min2(son[k][1],0);
}
}t;
struct Heap
{
int sz,A[M];
inline int Top()
{
return A[1];
}
void Push(int x)
{
A[++sz]=x;
int now=sz,nxt=now>>1;
while(now>1 && A[nxt]>A[now])
std::swap(A[nxt],A[now]), now=nxt, nxt=now>>1;
}
void Pop()
{
A[1]=A[sz--];
int now=1,nxt;
while(now<<1<=sz)
{
nxt=now<<1;
if(A[nxt]>A[nxt+1] && nxt<sz) ++nxt;
if(A[nxt]>=A[now]) break;
std::swap(A[now],A[nxt]);
now=nxt;
}
}
}h1,h2;
inline int read()
{
int now=0,f=1;register char c=getchar();
for(;!isdigit(c);c=getchar()) if(c=='-') f=-1;
for(;isdigit(c);now=now*10+c-'0',c=getchar());
return now*f;
}
void Ins()
{
int p=read(),v=read();
if(p!=n)
h2.Push(std::abs(st[p+1]-ed[p])),
h1.Push(std::abs(st[p+1]-v));
h1.Push(std::abs(ed[p]-v));
ed[p]=v;
if(Min2) t.Insert(v,t.root);
}
int Query_Min1()
{
while(h1.Top()==h2.Top()) h1.Pop(),h2.Pop();
return h1.Top();
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("1110.in","r",stdin);
#endif
n=read(),q=read();
st[1]=ed[1]=read(),t.Insert(st[1],t.root);
for(int i=2;i<=n;++i)
st[i]=ed[i]=read(),h1.Push(std::abs(st[i]-st[i-1])),t.Insert(st[i],t.root);
char s[20];int p,v;
while(q--)
{
scanf("%s",s);
if(s[0]=='I') Ins();
else if(s[4]=='G') printf("%d\n",Query_Min1());
else printf("%d\n",Min2);
}
return 0;
}
------------------------------------------------------------------------------------------------------------------------
很久以前的奇怪但现在依旧成立的签名
attack is our red sun $$\color{red}{\boxed{\color{red}{attack\ is\ our\ red\ sun}}}$$ ------------------------------------------------------------------------------------------------------------------------
很久以前的奇怪但现在依旧成立的签名
attack is our red sun $$\color{red}{\boxed{\color{red}{attack\ is\ our\ red\ sun}}}$$ ------------------------------------------------------------------------------------------------------------------------