传送门

数据,标程

题意:

一颗有根树,支持询问点到根路径权值和,子树加,换父亲


欧拉序列怎么求路径权值和?

一个点的权值只会给自己的子树中的点贡献入栈权值正出栈权值负,求前缀和就行了!

和上题一样,伪ETT大法好

注意本题的子树需要根,所以需要找到子树区间左右的前驱和后继节点把他们splay出来才能得到子树区间,不能直接$l-1, r+1$,一开始写错了

然后注意下放标记,splay需要记录splay子树里有几个入栈几个出栈

加强版:询问任意一条路径$(u,v)$

当然需要减去lca了,于是用一个LCT维护树的形态

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
#define lc t[x].ch[0]
#define rc t[x].ch[1]
#define pa t[x].fa
#define pii pair<int, int>
#define MP make_pair
#define fir first
#define sec second
typedef long long ll;
const int N=2e5+;
inline int read(){
char c=getchar();int x=,f=;
while(c<''||c>''){if(c=='-')f=-; c=getchar();}
while(c>=''&&c<=''){x=x*+c-''; c=getchar();}
return x*f;
} int n, a[N], x, y, Q, fa[N]; char s[];
struct edge{int v, ne;} e[N];
int cnt, h[N];
inline void ins(int u, int v) {
e[++cnt]=(edge){v, h[u]}; h[u]=cnt;
}
pii dfn[N]; int dfc, eul[N];
void dfs(int u) {
dfn[u].fir = ++dfc; eul[dfc] = u;
for(int i=h[u]; i; i=e[i].ne) dfs(e[i].v);
dfn[u].sec = ++dfc; eul[dfc] = -u;
} struct meow{int ch[], fa, v, sl, sr, type; ll sum, tag;} t[N];
int root, sz;
inline int wh(int x) {return t[pa].ch[] == x;}
inline void update(int x) {
t[x].sum = t[lc].sum + t[rc].sum + t[x].v;
t[x].sl = t[lc].sl + t[rc].sl + (t[x].type==);
t[x].sr = t[lc].sr + t[rc].sr + (t[x].type==-);
} inline void paint(int x, int d) {
t[x].sum += (ll)d*(t[x].sl - t[x].sr);
t[x].v += d*t[x].type;
t[x].tag += d;
}
inline void pushDown(int x) { //printf("pushDown %d\n",x);
if(t[x].tag) { //puts("yes");
if(lc) paint(lc, t[x].tag);
if(rc) paint(rc, t[x].tag);
t[x].tag = ;
}
}
void pd(int x) { if(pa) pd(pa); pushDown(x); } inline void rotate(int x) {
int f=t[x].fa, g=t[f].fa, c=wh(x);
if(g) t[g].ch[wh(f)] = x; t[x].fa=g;
t[f].ch[c] = t[x].ch[c^]; t[t[f].ch[c]].fa=f;
t[x].ch[c^] = f; t[f].fa=x;
update(f); update(x);
}
inline void splay(int x, int tar) {
pd(x);
for(; pa!=tar; rotate(x))
if(t[pa].fa != tar) rotate(wh(x)==wh(pa) ? pa : x);
if(tar==) root=x;
} void build(int &x, int l, int r, int f) {
int mid = (l+r)>>; x=mid;
t[x].fa=f;
if(eul[x]>) t[x].type = , t[x].v = a[eul[x]];
else t[x].type = -, t[x].v = -a[-eul[x]];
if(l<mid) build(lc, l, mid-, x);
if(mid<r) build(rc, mid+, r, x);
update(x);
} inline int pre(int x) {
x = lc; while(rc) x = rc; return x;
}
inline int nex(int x) {
x = rc; while(lc) x = lc; return x;
}
inline void Split(int &p, int &x) {
splay(p, ); p = pre(p);
splay(x, ); x = nex(x);
splay(p, ); splay(x, p);
} ll Que(int u) {
int p = dfn[].fir, x = dfn[u].fir;
Split(p, x);
return t[lc].sum;
} void Cha(int u, int far) {
int p = dfn[u].fir, x = dfn[u].sec;
Split(p, x);
int q = lc;
lc = t[q].fa = ;
update(x); update(p); p = dfn[far].fir; splay(p, );
x = nex(p); splay(x, p);
lc = q; t[q].fa = x;
update(x); update(p);
} void AddVal(int u, int d) {
int p = dfn[u].fir, x = dfn[u].sec;
Split(p, x);
paint(lc, d);
} int main() {
//freopen("in","r",stdin);
freopen("galaxy.in", "r", stdin);
freopen("galaxy.out", "w", stdout);
n=read();
for(int i=; i<=n; i++) ins(read(), i);
for(int i=; i<=n; i++) a[i]=read();
dfc=; dfs(); dfc++;
build(root, , dfc, );
Q=read();
for(int i=; i<=Q; i++) {
scanf("%s", s); x=read();
if(s[]=='Q') printf("%lld\n", Que(x));
else if(s[]=='C') Cha(x, read());
else AddVal(x, read());
}
}

BZOJ 3786: 星系探索 [伪ETT]的更多相关文章

  1. [BZOJ3786]星系探索(伪ETT)

    3786: 星系探索 Time Limit: 40 Sec  Memory Limit: 256 MBSubmit: 1638  Solved: 506[Submit][Status][Discuss ...

  2. BZOJ 3786: 星系探索 解题报告

    3786: 星系探索 Description 物理学家小C的研究正遇到某个瓶颈. 他正在研究的是一个星系,这个星系中有n个星球,其中有一个主星球(方便起见我们默认其为1号星球),其余的所有星球均有且仅 ...

  3. BZOJ 3786: 星系探索 ETT

    Description 物理学家小C的研究正遇到某个瓶颈. 他正在研究的是一个星系,这个星系中有n个星球,其中有一个主星球(方便起见我们默认其为1号星球),其余的所有星球均有且仅有一个依赖星球.主星球 ...

  4. bzoj 3786 星系探索 dfs+splay

    [BZOJ3786]星系探索 Description 物理学家小C的研究正遇到某个瓶颈. 他正在研究的是一个星系,这个星系中有n个星球,其中有一个主星球(方便起见我们默认其为1号星球),其余的所有星球 ...

  5. BZOJ 3786 星系探索

    Description 物理学家小C的研究正遇到某个瓶颈. 他正在研究的是一个星系,这个星系中有n个星球,其中有一个主星球(方便起见我们默认其为1号星球),其余的所有星球均有且仅有一个依赖星球.主星球 ...

  6. BZOJ 3786 星系探索 ——Splay

    子树可以移动,唔. 还是用Splay维护DFS序即可. 子树的话直接截取出来就好了. 然后求前驱后继可能麻烦一些. 添加两个虚拟节点会比较好写. #include <map> #inclu ...

  7. BZOJ 3786 星系探索 (splay+dfs序)

    题目大意:给你一棵树,支持一下三种操作 1.获取某节点到根节点的路径上所有节点的权值和 2.更换某棵子树的父亲 3.某子树内所有节点的权值都增加一个值w 当时想到了splay维护dfs序,查完题解发现 ...

  8. BZOJ 3786: 星系探索 欧拉游览树

    一个叫 Euler-Tour-Tree 的数据结构,说白了就是用 Splay_Tree 维护欧拉序 #include <cstring> #include <algorithm> ...

  9. 【BZOJ】3786: 星系探索

    [题意]给定一棵带点权树,三种操作: 1.询问点x到根的路径和 2.子树x内的点权加定值y 3.将点x的父亲更换为y,保证仍是树. [算法]平衡树(fhq-treap) [题解] 将树的dfs序作为序 ...

随机推荐

  1. hdu_3483A Very Simple Problem(C(m,n)+快速幂矩阵)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3483 A Very Simple Problem Time Limit: 4000/2000 MS ( ...

  2. 【笔记】nodejs读取JSON,数组转树

    const fs = require('fs'); // --------------- 读取源文件 --------------- const originData = require('./vux ...

  3. Windows系统下文件的概念及c语言对其的基本操作(甲)

    文件概念

  4. AspectCore动态代理中的拦截器详解(一)

    前言 在上一篇文章使用AspectCore动态代理中,简单说明了AspectCore.DynamicProxy的使用方式,由于介绍的比较浅显,也有不少同学留言询问拦截器的配置,那么在这篇文章中,我们来 ...

  5. UEP-查询方式总结

    public void retrieve() { QueryParamList params = getQueryParam("dataWrap"); //获取页面上的参数,即查询 ...

  6. 安装win8+Ubuntu14.04双系统的经验总结

    当时查资料,很多人推荐了easyBCD直接安装ubuntu,但是在我的笔记本上行不通.我的笔记本是Lenovo V480+win8正版系统.这是因为我的笔记本的引导结构是EFI,而不是MBR.我的方法 ...

  7. 月薪20k以上的高级程序员需要学习哪些技术呢?

    课程内容: 源码分析.分布式架构.微服务架构.性能优化.团队协作效率.双十一项目实战 适用对象: 1-5年或更长软件开发经验,没有工作经验但基础非常扎实,对java工作机制,常用设计思想,常用java ...

  8. android 基础03 -- Intent

    Android 中的 Intent 是将要执行的操作的一种抽象的描述,是一个用于Android 各个组件之间传递消息的对象. Intent 的基本用法 Intent 基本的使用方法主要有三种: 启动一 ...

  9. IOS UI 滚动视图 UIScrollView

    UIScrollView 常用属性 scrollView.maximumZoomScale= 2.0; //  缩放最大比例 scrollView.minimumZoomScale = 0.2;// ...

  10. Insert Sort Singly List

    对单链表插入排序,给出个单链表的head节点:返回排完序的head节点: 首先数据结构中习惯了以数组为参数排序,瞬间想到是遍历单链表存入arraylist中,再进行insert sort,(O(n** ...