CodeForces 343D (트 리 체인 분할 + 선분 트 리)
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:
Fill vertex v with water. Then v and all its children are filled with water. Empty vertex v. Then v and all its ancestors are emptied. 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 ai, bi (1 ≤ ai, bi ≤ n, ai ≠ 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
5
1 2
5 1
2 3
4 2
12
1 1
2 3
3 1
3 2
3 3
3 4
1 2
2 4
3 1
3 3
3 4
3 5
output
0
0
0
1
0
1
0
1
제목: 나무 한 그루 를 주 고 세 가지 동작 을 지원 합 니 다. 1 x: x 노드 를 뿌리 노드 로 하 는 서브 트 리 를 모두 12 x 로 바 꿉 니 다. 노드 x 에서 뿌리 노드 1 까지 의 이 체인 을 모두 0 3 x 로 바 꿉 니 다. 노드 x 의 값 을 판단 합 니 다 (0 / 1)
문제 풀이 사고: 이것 은 나무 사슬 로 나 누 어 진 판 문제 입 니 다. 우 리 는 dfs 순 서 를 처리 할 때 먼저 중 사슬 을 처리 합 니 다. 그러면 우 리 는 한 그루 의 나무 가 연속 적 인 구간 에 있 는 동시에 그의 중 사슬 도 연속 적 인 구간 에 있다 는 것 을 보증 할 수 있 습 니 다.그 다음 에 우리 가 조작 1 을 실행 할 때 dfs 순서 로 업데이트 하면 됩 니 다. 조작 2 를 실행 할 때 우 리 는 거리 에 있 는 체인 의 업 데 이 트 를 하면 됩 니 다. (체인 의 번호 가 연속 적 이라는 것 을 보장 하기 때 문 입 니 다)코드:
#pragma GCC optimize(2)
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <stack>
#include <bitset>
#include <queue>
//#include
#include <time.h>
using namespace std;
#define int long long
#define ull unsigned long long
#define ls root<<1
#define rs root<<1|1
const int maxn = 5e5 + 7;
//std::mt19937 rnd(time(NULL));
struct edge
{
int v, next;
} e[maxn << 1];
int head[maxn], cnt;
inline void add(int a,int b)
{
e[++cnt] = edge{b, head[a]};
head[a] = cnt;
}
/*
*/
int dfn[maxn], son[maxn], top[maxn], f[maxn], out[maxn], Size[maxn], tot;
void dfs1(int u,int fa)
{
f[u] = fa, Size[u] = 1;
son[u] = 0, Size[0] = 0;
for (int i = head[u]; i;i=e[i].next){
int v = e[i].v;
if(v==fa)
continue;
dfs1(v, u);
Size[u] += Size[v];
if(Size[son[u]]<Size[v]){
son[u] = v;
}
}
}
void dfs2(int u,int fa)
{
if(u==0)
return;
dfn[u] = ++tot, top[u] = fa;
dfs2(son[u], fa);
for (int i = head[u]; i;i=e[i].next){
int v = e[i].v;
if(v==son[u] || v==f[u])
continue;
dfs2(v, v);
}
out[u] = tot;
}
/*
*/
struct tree
{
int l, r, date, lazy;
} t[maxn << 2];
void build(int root,int l,int r)
{
t[root].l = l, t[root].r = r;
t[root].date = 0, t[root].lazy = -1;
if(l==r)
return;
int mid = l + r >> 1;
build(ls, l, mid);
build(rs, mid + 1, r);
}
void pushdown(int root)
{
if(t[root].lazy!=-1){
t[ls].lazy = t[rs].lazy = t[root].lazy;
t[ls].date = (t[ls].r - t[ls].l + 1) * t[root].lazy;
t[rs].date = (t[rs].r - t[rs].l + 1) * t[root].lazy;
t[root].lazy = -1;
}
}
int query(int root,int k)
{
if(t[root].l==t[root].r){
return t[root].date;
}
pushdown(root);
int mid = t[root].l + t[root].r >> 1;
if(k<=mid)
return query(ls, k);
else
return query(rs, k);
}
void update(int root,int l,int r,int k)
{
if(t[root].l>=l && t[root].r<=r){
t[root].date = k * (t[root].r - t[root].l + 1);
t[root].lazy = k;
return;
}
pushdown(root);
int mid = t[root].r + t[root].l >> 1;
if(l<=mid)
update(ls, l, r, k);
if(r>mid)
update(rs, l, r, k);
}
void tupdate(int x)
{
while(x!=1){
update(1,dfn[top[x]],dfn[x],0);
//printf("%lld %lld
",top[x],x);
x=top[x];
x=f[x];
}
update(1,1,dfn[x],0);
}
void debug(int n)
{
printf("
");
for (int i = 1; i <= n;i++){
printf("%lld %lld
", dfn[i], top[i]);
//printf("%lld
", son[i]);
}
printf("
");
}
signed main()
{
int n;
scanf("%lld", &n);
for (int i = 1; i < n;i++){
int x, y;
scanf("%lld%lld", &x, &y);
add(x, y), add(y, x);
}
dfs1(1, 1), dfs2(1, 1);
build(1, 1, n);
//debug(n);
int m;
scanf("%lld", &m);
while(m--){
int op;
scanf("%lld", &op);
if(op==1){
int x;
scanf("%lld", &x);
update(1, dfn[x], out[x], 1);
}
else if(op==2){
int x;
scanf("%lld", &x);
tupdate(x);
}
else{
int x;
scanf("%lld", &x);
printf("%lld
", query(1, dfn[x]));
}
}
}
PS: 집에 돌아 온 지 오래 돼 서 다 녀 오 면 배우 기로 했 는데 요즘 일이 많아 서 2020 년 에는 더 잘 됐 으 면 좋 겠 어 요.무한 화 이 팅!후 베 이 파 이 팅!사천 파 이 팅!중국 화 이 팅!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.