[CF414E]Mashmokh's Designed Problem
题意:给一棵树,有三个操作:①询问两点$(x,y)$之间的距离②把$x$和原来的父亲断开并连到它的$h$级祖先,作为新父亲最右的儿子③询问与根节点距离为$k$的点中最右的点是哪个点
用出栈入栈序$s_{1\cdots 2n}$来维护整棵树,入栈记$1$出栈记$-1$,那么一个节点$x$的深度就是$\sum\limits_{i=1}^{in_x}s_x$
每个平衡树节点记1.这个节点是出栈还是入栈2.子树和3.最大前缀和4.最小前缀和,那么我们就可以在平衡树上二分找到最右的深度为$d$的节点(注意如果找到的是出栈点应该返回父亲,因为有个$-1$)
对于操作①,把$(in_x,in_y)$提出来,那么这个区间内深度最小的节点就是$lca_{x,y}$
对于操作②,找到那个$h$级祖先,直接序列移动即可
对于操作③,直接找
为了使我的splay不残废就用splay写了一下
注意因为邻接表的性质,加边要倒着加
#include<stdio.h>
int ch[200010][2],fa[200010],v[200010],s[200010],mx[200010],mn[200010],h[100010],nex[100010],to[100010],pa[100010],tmp[100010],p[200010],M,rt;
void add(int a,int b){
M++;
to[M]=b;
nex[M]=h[a];
h[a]=M;
}
void dfs(int x){
M++;
p[M]=(x<<1)-1;
v[(x<<1)-1]=1;
for(int i=h[x];i;i=nex[i]){
pa[to[i]]=x;
dfs(to[i]);
}
M++;
p[M]=x<<1;
v[x<<1]=-1;
}
#define ls ch[x][0]
#define rs ch[x][1]
int max(int a,int b){return a>b?a:b;}
int min(int a,int b){return a<b?a:b;}
void pushup(int x){
s[x]=s[ls]+s[rs]+v[x];
mx[x]=max(mx[ls],s[ls]+v[x]+max(mx[rs],0));
mn[x]=min(mn[ls],s[ls]+v[x]+min(mn[rs],0));
}
int build(int l,int r){
int mid=(l+r)>>1;
int&x=p[mid];
if(l<mid){
ls=build(l,mid-1);
fa[ls]=x;
}
if(mid<r){
rs=build(mid+1,r);
fa[rs]=x;
}
pushup(x);
return x;
}
void rot(int x){
int y,z,f,B;
y=fa[x];
z=fa[y];
f=(ch[y][0]==x);
B=ch[x][f];
fa[x]=z;
fa[y]=x;
if(B)fa[B]=y;
ch[x][f]=y;
ch[y][f^1]=B;
if(ch[z][0]==y)ch[z][0]=x;
if(ch[z][1]==y)ch[z][1]=x;
pushup(y);
pushup(x);
}
void splay(int x,int gl){
int y,z;
while(fa[x]!=gl){
y=fa[x];
z=fa[y];
if(z!=gl)rot((ch[z][0]==y&&ch[y][0]==x)||(ch[z][1]==y&&ch[y][1]==x)?y:x);
rot(x);
}
}
int getdis(int x,int y){
x=(x<<1)-1;
y=(y<<1)-1;
int dx,dy,dl;
splay(x,0);
dx=s[ls]+v[x];
splay(y,0);
dy=s[ch[y][0]]+v[y];
splay(x,0);
splay(y,x);
rt=x;
dl=min(dx,dy);
if(ls==y)
dl=min(dl,s[ch[y][0]]+v[y]+mn[ch[y][1]]);
else
dl=min(dl,s[ls]+v[x]+mn[ch[y][0]]);
return dx+dy-(dl<<1);
}
int find(int x,int d){
if(mx[rs]>=d-s[ls]-v[x]&&mn[rs]<=d-s[ls]-v[x])return find(rs,d-s[ls]-v[x]);
if(s[ls]+v[x]==d)return(x&1)?(x+1)>>1:pa[x>>1];
return find(ls,d);
}
int pre(int x){
splay(x,0);
for(x=ls;rs;x=rs);
return x;
}
int nx(int x){
splay(x,0);
for(x=rs;ls;x=ls);
return x;
}
void change(int u,int h){
int x=(u<<1)-1,L,R,t;
splay(x,0);
pa[u]=find(ls,s[ls]+v[x]-h);
L=pre(x);
R=nx(u<<1);
splay(L,0);
splay(R,L);
t=ch[R][0];
ch[R][0]=0;
pushup(R);
pushup(L);
L=pre(pa[u]<<1);
R=(pa[u]<<1);
splay(L,0);
splay(R,L);
ch[R][0]=t;
fa[t]=R;
pushup(R);
pushup(L);
rt=L;
}
#define inf 1000000000
int main(){
mx[0]=-inf;
mn[0]=inf;
int n,m,i,x,y;
scanf("%d%d",&n,&m);
for(i=1;i<=n;i++){
scanf("%d",&y);
for(x=1;x<=y;x++)scanf("%d",tmp+x);
for(x=y;x>0;x--)add(i,tmp[x]);
}
M=0;
dfs(1);
rt=build(1,n<<1);
while(m--){
scanf("%d%d",&i,&x);
if(i!=3)scanf("%d",&y);
if(i==1)printf("%d\n",getdis(x,y));
if(i==2)change(x,y);
if(i==3)printf("%d\n",find(rt,x+1));
}
}
[CF414E]Mashmokh's Designed Problem的更多相关文章
- @codeforces - 414E@ Mashmokh's Designed Problem
目录 @description@ @solution@ @accepted code@ @details@ @description@ 给定一棵 n 个点的树,每个点的儿子是有序的. 现给定 m 次操 ...
- [JZOJ3691] 【CF414E】Mashmokh's Designed tree
题目 题目大意 给你一棵树,接下来对这棵树进行三种操作: 1.询问两点之间的距离. 2.让某个点变为它原来的第\(h\)个祖先的最后一个儿子. 3.求\(dfs\)序中最后一个深度为\(k\)的点. ...
- HDU1086You can Solve a Geometry Problem too(判断线段相交)
You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/3 ...
- [转]Amazon DynamoDB – a Fast and Scalable NoSQL Database Service Designed for Internet Scale Applications
This article is from blog of Amazon CTO Werner Vogels. -------------------- Today is a very exciting ...
- hdu 1086 You can Solve a Geometry Problem too
You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/3 ...
- you can Solve a Geometry Problem too(hdoj1086)
Problem Description Many geometry(几何)problems were designed in the ACM/ICPC. And now, I also prepare ...
- C#学习日志 day10 -------------- problem statement
Revision History Date Issue Description Author 15/May/2015 1.0 Finish most of the designed function. ...
- HDU 4716 A Computer Graphics Problem
A Computer Graphics Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (J ...
- (hdu step 7.1.2)You can Solve a Geometry Problem too(乞讨n条线段,相交两者之间的段数)
称号: You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/ ...
随机推荐
- 如何用listview显示服务端数据
https://www.cnblogs.com/caobotao/p/5061627.html
- 使用UMeditor富文本编辑器上传图片
注:本文系作者原创,但可随意转载. 最近写自己的网站玩儿,写到博客的部分,打算使用UMeditor,因为之前也用过(但是好像没实现图片上传的功能),感觉用起来还比较简单. 不过还是折腾了一下午...遇 ...
- synchronized ---- 作用
获得同步锁: 1.清空工作内存: 2.从主内存拷贝对象副本到工作内存: 3.执行代码(计算或者输出等): 4.刷新主内存数据: 5.释放同步锁.
- nodejs是用来做什么的?
有些人说“这是一种通过javascript语言开发web服务端的东西”.更直白的可以理解为:node.js有非阻se塞,事件驱动/O等特性,从而让高并发(high concurrency)在的轮询和c ...
- JS遮罩层弹框效果
对于前端开发者来说,js是不可缺少的语言.现在我开始把我日常积累的一些js效果或者通过搜索自己总结的一些效果分享给大家,希望能够帮助大家一起进步,也希望大家能够多多支持! 1.今天我先分享一个遮罩层弹 ...
- eclipse怎样快速的给代码段添加try catch
打开要进行异常处理的java代码页面. 选中要添加try..catch的代码段,然后点击鼠标右键,选择[Sourround With]选项. 然后选择[Try/Catch Block]或者[6 try ...
- css划斜线
http://stackoverflow.com/questions/18012420/draw-diagonal-lines-in-div-background-with-css
- #error,在xib文件中拷贝按钮所造成的错误.
https://www.evernote.com/shard/s227/sh/3e35a7b3-f40c-46df-8ae0-e7522310c18b/742311974127f12eaafae07a ...
- 谈谈openstack部署规模问题
理论上,单个openstack已设计成可水平扩展的系统,只要数据库足够快,消息总线足够多资源等,一个openstack系统可管理上千台物理服务器是没有问题的. 但是单个openstack规模大了之后, ...
- bzoj 3224 裸平衡树
裸的平衡树,可以熟悉模板用,写题写不出来的时候可以A以下缓解下心情. /************************************************************** P ...