题面

\(Solution\)

通过模拟,我们会发现每次修改 \(x\),只会改变从 \(x\) 向上一段连续的链的输出。

例如将 \(x\) 点从 \(0\) 改为 \(1,\) 那么它会影响从它向上的一段连续的链,这条链上的每一个节点的 \(1\) 儿子的个数为 \(1(\) 原来都输出 \(0\) ,改完后输出 \(1)\)

\(x\) 从 \(1\) 变 \(0\) 同理

所以我们只需要知道这条链,然后就可以树剖/\(LCT\)去维护。

这里给出 \(LCT\) 解法

记 \(val[x]\) 为 \(x\) 的儿子中 \(1\) 的个数,

那么当修改一个点 \(x\) 从 \(0\) 变 \(1\) 的时候,就成了找从根到 \(x\)的路径上最深的,val不为1的点 \(y\) ,再将 \(y\) 与 \(x\) 拉出一条链,区间修改这颗从 \(x\) 到 \(y\) 的 \(Splay (\)每个点的权值 \(+1)\) , 询问就 \(splay(1)\) ,讨论下 \(val[1]\)

\(x\) 从 \(1\) 变 \(0\) 同理

\(Source\)

#include <stdio.h>
#include <assert.h>
#include <ctype.h>
#include <set>
#include <cstring> using namespace std; namespace io {
char buf[1<<21], *pos = buf, *end = buf;
inline char getc()
{ return pos == end && (end = (pos = buf) + fread(buf, 1, 1<<21, stdin), pos == end) ? EOF : *pos ++; }
inline int rint() {
register int x = 0, f = 1; register char c;
while (!isdigit(c = getc())) if (c == '-') f = -1;
while (x = (x << 1) + (x << 3) + (c ^ 48), isdigit(c = getc()));
return x * f;
}
template<typename T>
inline bool chkmin(T &x, T y) { return x > y ? (x = y, 0) : 1; }
template<typename T>
inline bool chkmax(T &x, T y) { return x < y ? (x = y, 0) : 1; }
#define debug(...) fprintf(stderr, __VA_ARGS__)
#define rep(i, a, b) for (register int i = a; i <= b; ++ i)
#define dep(i, a, b) for (register int i = a; i >= b; -- i)
#define travel(i, u) for (register int i = head[u]; i; i = nxt[i])
#define mem(a, b) memset(a, b, sizeof a)
}
using io::rint; const int N = 1.5e6 + 5;//开三倍,题目要求 int ch[N][3], n, q, fa[N]; struct LCT {
#define ls(x) (ch[x][0])
#define rs(x) (ch[x][1])
#define chk(x) (ch[fa[x]][1] == x) int ch[N][2], val[N], tag[N], fa[N];
bool not1[N], not2[N];//notx[u]表示以u为根的子树中是否有权值不为x的点,没有为0, 有为1 bool isroot(int x)
{ return ls(fa[x]) ^ x && rs(fa[x]) ^ x; } void add(int x, int z) {
val[x] += z; tag[x] += z;
if (z > 0) not2[x] = not1[x], not1[x] = 0;
else not1[x] = not2[x], not2[x] = 0;
} void pushup(int x) {
not1[x] = not1[ls(x)] | not1[rs(x)] | (val[x] != 1);
not2[x] = not2[ls(x)] | not2[rs(x)] | (val[x] != 2);
} void pushdown(int x) {
if (!tag[x]) return;
if (ls(x)) add(ls(x), tag[x]);
if (rs(x)) add(rs(x), tag[x]);
tag[x] = 0;
} void rotate(int x) {
int y = fa[x], z = fa[y], k = chk(x), tmp = ch[x][k ^ 1];
ch[y][k] = tmp, fa[tmp] = y;
if (!isroot(y)) ch[z][chk(y)] = x;
fa[x] = z;
ch[x][k ^ 1] = y, fa[y] = x;
pushup(y), pushup(x);
} int stk[N], top;
void splay(int x) {
stk[top = 1] = x;
for (int i = x; !isroot(i); i = fa[i])
stk[++top] = fa[i]; while (top) pushdown(stk[top--]);
while (!isroot(x)) {
int y = fa[x], z = fa[y];
if (!isroot(y))
if (chk(x) == chk(y)) rotate(y);
else rotate(x);
rotate(x);
}
} void access(int x) {
for (int y = 0; x; x = fa[y = x])
splay(x), rs(x) = y, pushup(x);
} int findnot1(int x) {
pushdown(x);
if (!not1[x]) return 0;
if (not1[rs(x)]) return findnot1(rs(x));
if (val[x] != 1) return x;
return findnot1(ls(x));
} int findnot2(int x) {
pushdown(x);
if (!not2[x]) return 0;
if (not2[rs(x)]) return findnot2(rs(x));
if (val[x] != 2) return x;
return findnot2(ls(x));
}
} T; void DFS(int x) {
if (x <= n) {
rep (i, 0, 2) {
DFS(ch[x][i]);
T.val[x] += (T.val[ch[x][i]] >> 1);//预处理出每个点的权值
}
}
} int main() {
#ifndef ONLINE_JUDGE
freopen("P4332.in", "r", stdin);
freopen("P4332.out", "w", stdout);
#endif n = rint();
rep (i, 1, n) rep (j, 0, 2) {
ch[i][j] = rint();
fa[ch[i][j]] = T.fa[ch[i][j]] = i;
}
rep (i, n + 1, 3 * n + 1) {
T.val[i] = rint(); T.val[i] ++;//很巧妙地计算权值,val存的是儿子中1的个数
} DFS(1); q = rint();
while (q --) {
int x = rint();
T.access(x);
T.splay(x);
if (T.val[x] > 1) {//1 - > 0 说明只有2的链才会改变
int y = T.findnot2(T.ch[x][0]);
T.access(fa[y]);
T.splay(x);
T.add(x, -1);
} else {// 0 -> 1 说明只有1的链会改变
int y = T.findnot1(T.ch[x][0]);
T.access(fa[y]);
T.splay(x);
T.add(x, 1);
}
T.splay(1);
printf("%d\n", T.val[1] > 1);
}
}

P4332三叉神经树的更多相关文章

  1. 【BZOJ-3553】三叉神经树 树链剖分

    3553: [Shoi2014]三叉神经树 Time Limit: 160 Sec  Memory Limit: 256 MBSubmit: 347  Solved: 112[Submit][Stat ...

  2. 「SHOI2014」三叉神经树 解题报告

    「SHOI2014」三叉神经树 膜拜神仙思路 我们想做一个类似于动态dp的东西,首先得确保我们的运算有一个交换律,这样我们可以把一长串的运算转换成一块一块的放到矩阵上之类的东西,然后拿数据结构维护. ...

  3. [BZOJ 3553][SHOI2014]三叉神经树

    传送门(下面也有题面) 题目大意: 一颗有根树,每个非叶子节点都有三个子节点,每个节点的权为0/1. 每个节点的权 取决于其所有子节点中 哪种权出现的次数更多. 有若干次询问,每次询问修改一个叶子节点 ...

  4. 三叉神经树 ( neuron )

    三叉神经树 ( neuron ) 题目描述 计算神经学作为新兴的交叉学科近些年来一直是学术界的热点.一种叫做SHOI 的神经组织因为其和近日发现的化合物SHTSC 的密切联系引起了人们的极大关注. S ...

  5. 「SHOI2014」三叉神经树

    「SHOI2014」三叉神经树 给你一颗由\(n\)个非叶子结点和\(2n+1\)个叶子结点构成的完全三叉树,每个叶子结点有一个输出:\(0\)或\(1\),每个非叶子结点的输出为自己的叶子结点中较多 ...

  6. 洛谷P4332 [SHOI2014]三叉神经树(LCT,树剖,二分查找,拓扑排序)

    洛谷题目传送门 你谷无题解于是来补一发 随便百度题解,发现了不少诸如树剖\(log^3\)LCT\(log^2\)的可怕描述...... 于是来想想怎么利用题目的性质,把复杂度降下来. 首先,每个点的 ...

  7. P4332 [SHOI2014]三叉神经树(LCT)

    Luogu4332 LOJ2187 题解 代码-Tea 题意 : 每个点有三个儿子 , 给定叶节点的权值\(0\)或\(1\)且支持修改 , 非叶子节点的权值为当有\(>=2\)个儿子的权值为\ ...

  8. P4332 [SHOI2014]三叉神经树

    \(\color{#0066ff}{ 题目描述 }\) 计算神经学作为新兴的交叉学科近些年来一直是学术界的热点.一种叫做SHOI 的神经组织因为其和近日发现的化合物 SHTSC 的密切联系引起了人们的 ...

  9. 洛谷P4332 [SHOI2014]三叉神经树(LCT)

    传送门 FlashHu大佬太强啦%%% 首先,我们可以根据每一个点的权值为$1$的儿子的个数把每个点记为$0~3$,表示这一个点的点权 先考虑一下暴力的过程,假设从$0$变为$1$,先更改一个叶子结点 ...

随机推荐

  1. 【luogu P2002 消息扩散】 题解

    题目链接:https://www.luogu.org/problemnew/show/P2002 缩点把原图变为DAG,再在DAG上判断找入度为0的点的个数. 注意一点出度为0的点的个数不等于入度为0 ...

  2. 深入浅出C指针

    http://bbs.9ria.com/blog-164422-18039.html 初学者在学习C语言时,通常会遇到两个瓶颈,一个是“递归”,一个是“指针”.大学老师在讲述这两个知识点时通常都是照本 ...

  3. HTML5之canvas基本API介绍及应用 1

    一.canvas的API: 1.颜色.样式和阴影: 2.线条样式属性和方法: 3.路径方法: 4.转换方法: 5.文本属性和方法: 6.像素操作方法和属性: 7.其他: drawImage:向画布上绘 ...

  4. UliPad安装

    1 http://www.cnblogs.com/dolphin0520/p/4012804.html 2 http://www.iplaypython.com/editor/ulipad.html

  5. 简述 private、 protected、 public、 internal 修饰符的访问权限

    简述 private. protected. public. internal 修饰符的访问权限. private : 私有成员, 在该类的内部才可以访问. protected : 保护成员,该类内部 ...

  6. viewpager中 pagerAdapter使用详解

    必须覆盖以下方法instantiateItem(ViewGroup, int) 这个方法,return一个对象,这个对象表明了PagerAdapter适配器选择哪个对象*放在当前的ViewPager中 ...

  7. css3中有关transform的问题

    Transform属性应用于元素的2D或3D转换.这个属性允许你将元素旋转,缩放,移动,倾斜等.

  8. Linux mongodb安装、启动、运行

    1.下载     wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.4.tgz     2.安装     tar -zxvf  ...

  9. layDate 闪现 循环一个以上会闪现

    一个render一次渲染一个日期组件,这个是内置的,所以需要循环绑定, 又不能确定页面有多少个,还好layDate 提供了内置方法, //同时绑定多个 lay('.test-item').each(f ...

  10. 如何解决tomcat中的应用报java.io.IOException: 您的主机中的软件中止了一个已建立的连接

    转载: 施勇: https://blog.csdn.net/shiyong1949/article/details/72845634 这两天突然看到日志文件中有“java.io.IOException ...