Codeforces 343D Water Tree(DFS序+线段树+技巧)

题目链接:http://codeforces.com/problemset/problem/343/D

题目:

Mad scientist Mike has constructed a rooted tree, which consists of n vertices. Each vertex is a reservoir which can be either empty or filled with water.

The vertices of the tree are numbered from 1 to n with the root at vertex 1. For each vertex, the reservoirs of its children are located below the reservoir of this vertex, and the vertex is connected with each of the children by a pipe through which water can flow downwards.

Mike wants to do the following operations with the tree:

  1. Fill vertex v with water. Then v and all its children are filled with water.
  2. Empty vertex v. Then v and all its ancestors are emptied.
  3. Determine whether vertex v is filled with water at the moment.

Initially all vertices of the tree are empty.

Mike has already compiled a full list of operations that he wants to perform in order. Before experimenting with the tree Mike decided to run the list through a simulation. Help Mike determine what results will he get after performing all the operations.

Input

The first line of the input contains an integer n (1 ≤ n ≤ 500000) — the number of vertices in the tree. Each of the following n - 1 lines contains two space-separated numbers aibi (1 ≤ ai, bi ≤ nai ≠ bi) — the edges of the tree.

The next line contains a number q (1 ≤ q ≤ 500000) — the number of operations to perform. Each of the following q lines contains two space-separated numbers ci (1 ≤ ci ≤ 3), vi (1 ≤ vi ≤ n), where ci is the operation type (according to the numbering given in the statement), and vi is the vertex on which the operation is performed.

It is guaranteed that the given graph is a tree.

Output

For each type 3 operation print 1 on a separate line if the vertex is full, and 0 if the vertex is empty. Print the answers to queries in the order in which the queries are given in the input.

Examples

input

Copy

51 25 12 34 2121 12 33 13 23 33 41 22 43 13 33 43 5

output

00010101题意:给定一个树,树上有n个点,每个点是一个蓄水池,初始全为空。首先输入一个n,然后输入n - 1行,每行两个点,代表两点之间有边,然后输入一个m,接下来m行操作,操作有3种:1 v,把v及v的所有子孙注水。2 v,把v及v的所有祖先放水。3 v,询问v点有没有水,有输出1,否则0题解:操作1和操作3很好解决,操作2的话在我们跑DFS把每个点的祖先也标记一下。因为放水的原因,我们操作1的时候,跑那个顶点统领的区间时候,如果初始状态为放水,那么它的祖先也是放水的,我们需要把它的祖先放水(单点更新一下)。所以操作2只要单点更新。操作3判断一下改点统领的区间中有没有放水的,有的话,那么改点也是放水的。*注意操作3query的是区间(刚刚一直在这里wa...),pushup和pushdown理解一下就好了。
  1 #include <bits/stdc++.h>
  2 using namespace std;
  3
  4 typedef long long LL;
  5 const int N=500010;
  6 vector <int> E[N];
  7 int st[N],en[N],f;
  8 int a[N],vis[N],fa[N],index;
  9
 10 void dfs(int u){
 11     st[u]=++index;vis[u]=1;
 12     for(int i=0;i<E[u].size();i++){
 13         int v=E[u][i];
 14         if(!vis[v]){
 15             fa[v]=u;
 16             dfs(v);
 17         }
 18     }
 19     en[u]=index;
 20 }
 21
 22 struct Tree{
 23     int l,r,p,mark;
 24 };
 25 Tree tree[4*N];
 26
 27 void pushup(int x){
 28     int tmp=x<<1;
 29     if(tree[tmp].p&&tree[tmp|1].p) tree[x].p=1;
 30     else tree[x].p=0;
 31 }
 32
 33 void pushdown(int x){
 34     int tmp=x<<1;
 35     tree[tmp].p=tree[tmp|1].p=tree[x].mark;
 36     tree[tmp].mark=tree[tmp|1].mark=tree[x].mark;
 37     tree[x].mark=0;
 38 }
 39
 40 void build(int l,int r,int x)
 41 {
 42     tree[x].l=l;
 43     tree[x].r=r;
 44     tree[x].mark=tree[x].p=0;
 45     if(l==r) return ;
 46     int tmp=x<<1;
 47     int mid=(l+r)>>1;
 48     build(l,mid,tmp);
 49     build(mid+1,r,tmp|1);
 50     //pushup(x);
 51 }
 52
 53 void update(int l,int r,int c,int x)
 54 {
 55     if(r<tree[x].l||l>tree[x].r) return ;
 56     if(l<=tree[x].l&&r>=tree[x].r)
 57     {
 58         if(tree[x].p==0) f=1;
 59         tree[x].p=tree[x].mark=c;
 60         return ;
 61     }
 62     if(tree[x].mark) pushdown(x);
 63     int tmp=x<<1;
 64     int mid=(tree[x].l+tree[x].r)>>1;
 65     if(r<=mid) update(l,r,c,tmp);
 66     else if(l>mid) update(l,r,c,tmp|1);
 67     else
 68     {
 69         update(l,mid,c,tmp);
 70         update(mid+1,r,c,tmp|1);
 71     }
 72     pushup(x);
 73 }
 74
 75 void query(int l,int r,int x)
 76 {
 77     if(r<tree[x].l||l>tree[x].r) return ;
 78     if(l<=tree[x].l&&r>=tree[x].r)
 79     {
 80         if(tree[x].p==0) f=0;
 81         return ;
 82     }
 83     if(tree[x].mark) pushdown(x);
 84     int tmp=x<<1;
 85     int mid=(tree[x].l+tree[x].r)>>1;
 86     if(r<=mid) query(l,r,tmp);
 87     else if(l>mid) query(l,r,tmp|1);
 88     else
 89     {
 90         query(l,mid,tmp);
 91         query(mid+1,r,tmp|1);
 92     }
 93 }
 94
 95 int main(){
 96     int n,m,u,v,op;
 97     scanf("%d",&n);
 98     for(int i=1;i<n;i++){
 99         scanf("%d%d",&u,&v);
100         E[u].push_back(v);
101         E[v].push_back(u);
102     }
103     fa[1]=0;
104     dfs(1);
105     build(1,n,1);
106     scanf("%d",&m);
107     while(m--){
108         scanf("%d%d",&op,&u);
109         if(op==1){
110             f=0;
111             update(st[u],en[u],1,1);
112             if(f) update(st[fa[u]],st[fa[u]],0,1);
113         }
114         else if(op==2){
115             update(st[u],st[u],0,1);
116         }
117         else{
118             f=1;
119             query(st[u],en[u],1);
120             printf("%d\n",f);
121         }
122     }
123     return 0;
124 }


原文地址:https://www.cnblogs.com/Leonard-/p/8468494.html

时间: 2024-10-09 11:10:03

Codeforces 343D Water Tree(DFS序+线段树+技巧)的相关文章

Educational Codeforces Round 6 E dfs序+线段树

题意:给出一颗有根树的构造和一开始每个点的颜色 有两种操作 1 : 给定点的子树群体涂色 2 : 求给定点的子树中有多少种颜色 比较容易想到dfs序+线段树去做 dfs序是很久以前看的bilibili上电子科技大学发的视频学习的 将一颗树通过dfs编号的方式 使每个点的子树的编号连在一起作为相连的区间 就可以配合线段树搞子树 因为以前好像听说过 线段树可以解决一种区间修改和查询区间中不同的xx个数...所以一下子就想到了... 但是我不会写线段树..只会最简单的单点修改区间查询...不会用延迟标

CodeForces 838B - Diverging Directions - [DFS序+线段树]

题目链接:http://codeforces.com/problemset/problem/838/B You are given a directed weighted graph with n nodes and 2n?-?2 edges. The nodes are labeled from 1 to n, while the edges are labeled from 1 to 2n?-?2. The graph's edges can be split into two parts.

POJ3321 - Apple Tree DFS序 + 线段树或树状数组

Apple Tree:http://poj.org/problem?id=3321 题意: 告诉你一棵树,每棵树开始每个点上都有一个苹果,有两种操作,一种是计算以x为根的树上有几个苹果,一种是转换x这个点上的苹果,就是有就去掉,没有就加上. 思路: 先对树求一遍dfs序,每个点保存一个l,r.l是最早到这个点的时间戳,r是这个点子树中的最大时间戳,这样就转化为区间问题,可以用树状数组,或线段树维护区间的和. #include <algorithm> #include <iterator&

Codeforces 343D Water Tree & 树链剖分教程

原题链接 题目大意 给定一棵根为1,初始时所有节点值为0的树,进行以下三个操作: 将以某点为根的子树节点值都变为1 将某个节点及其祖先的值都变为0 *询问某个节点的值 解题思路 这是一道裸的树链剖分题.下面详细地介绍一下树链剖分. 树链剖分预备知识: 线段树.DFS序 树链剖分想法|起源 首先,如果一棵树退化成一条链,那么它会有非常好的性质.我们可以用线段树等数据结构来维护相关操作,使得效率更高.那么我们考虑一般的树,它是否能被分成一些链,使它们也能更高效地进行某些操作? 算法流程 以下以点带权

codechef T6 Pishty and tree dfs序+线段树

PSHTTR: Pishty 和城堡题目描述 Pishty 是生活在胡斯特市的一个小男孩.胡斯特是胡克兰境内的一个古城,以其中世纪风格 的古堡和非常聪明的熊闻名全国. 胡斯特的镇城之宝是就是这么一座古堡,历史上胡斯特依靠这座古堡抵挡住了疯人国的大军. 对于 Pishty 来说,真正吸引他的是古堡悠长的走廊和高耸的钟楼,以及深藏于其中的秘密-- 古堡可以用一棵 N 个节点的树的描述,树中有 N ?1 条无向边,每条边有一个魔法数字 C. 当一个旅游团参观古堡时,他们会选择树上 U 到 V 的路径游

codeforces 617E. New Year Tree dfs序+线段树+bitset

题目链接 给一棵树, 每个节点有颜色, 两种操作, 一种是将一个节点的子树全都染色成c, 一种是查询一个节点的子树有多少个不同的颜色, c<=60. 每个节点一个bitset维护就可以. #include <iostream> #include <vector> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include

codeforces 343D Water Tree 树链剖分 dfs序 线段树 set

题目链接 这道题主要是要考虑到同一棵子树中dfs序是连续的 然后我就直接上树剖了... 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int MAXN=600005; 4 5 struct Node 6 { 7 int l,r; 8 int value; 9 void init() 10 { 11 l=r=value=0; 12 } 13 }tree[4*MAXN]; 14 vector<int>nei[MAXN]

【BZOJ-3252】攻略 DFS序 + 线段树 + 贪心

3252: 攻略 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 339  Solved: 130[Submit][Status][Discuss] Description 题目简述:树版[k取方格数] 众所周知,桂木桂马是攻略之神,开启攻略之神模式后,他可以同时攻略k部游戏. 今天他得到了一款新游戏<XX半岛>,这款游戏有n个场景(scene),某些场景可以通过不同的选择支到达其他场景.所有场景和选择支构成树状结构:开始游戏时在根节点(共通线)

POJ 3321 DFS序+线段树

单点修改树中某个节点,查询子树的性质.DFS序 子树序列一定在父节点的DFS序列之内,所以可以用线段树维护. 1: /* 2: DFS序 +线段树 3: */ 4:   5: #include <cstdio> 6: #include <cstring> 7: #include <cctype> 8: #include <algorithm> 9: #include <vector> 10: #include <iostream> 1