CF#877 E. Danil and a Part-time Job(DFS序+线段树)

E. Danil and a Part-time Job
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Danil decided to earn some money, so he had found a part-time job. The interview have went well, so now he is a light switcher.

Danil works in a rooted tree (undirected connected acyclic graph) with n vertices, vertex 1 is the root of the tree. There is a room in each vertex, light can be switched on or off in each room. Danil's duties include switching light in all rooms of the subtree of the vertex. It means that if light is switched on in some room of the subtree, he should switch it off. Otherwise, he should switch it on.

Unfortunately (or fortunately), Danil is very lazy. He knows that his boss is not going to personally check the work. Instead, he will send Danil tasks using Workforces personal messages.

There are two types of tasks:

  1. pow v describes a task to switch lights in the subtree of vertex v.
  2. get v describes a task to count the number of rooms in the subtree of v, in which the light is turned on. Danil should send the answer to his boss using Workforces messages.

A subtree of vertex v is a set of vertices for which the shortest path from them to the root passes through v. In particular, the vertex v is in the subtree of v.

Danil is not going to perform his duties. He asks you to write a program, which answers the boss instead of him.

Input

The first line contains a single integer n (1 ≤ n ≤ 200 000) — the number of vertices in the tree.

The second line contains n - 1 space-separated integers p2, p3, ..., pn (1 ≤ pi < i), where pi is the ancestor of vertex i.

The third line contains n space-separated integers t1, t2, ..., tn (0 ≤ ti ≤ 1), where ti is 1, if the light is turned on in vertex i and 0 otherwise.

The fourth line contains a single integer q (1 ≤ q ≤ 200 000) — the number of tasks.

The next q lines are get v or pow v (1 ≤ v ≤ n) — the tasks described above.

Output

For each task get v print the number of rooms in the subtree of v, in which the light is turned on.

Example
input
4
1 1 1
1 0 0 1
9
get 1
get 2
get 3
get 4
pow 1
get 1
get 2
get 3
get 4
output
2
0
0
1
2
1
1
0
Note
The tree before the task pow 1.

The tree after the task pow 1.

题意:给出一棵树,其节点为0或1,有两种操作

1:将一棵子树上所有节点的值反转

2:求一颗子树上1的个数

dfs序裸题

#include <bits/stdc++.h>
using namespace std;

const int N = 2e5 + 10;
int n, m;
int tot, tot1;
int head[N<<1], L[N], R[N];
struct xx{
    int to, nex;
} a[N<<1];
struct xxx{
    int l, r, v, tag;
} T[N<<2];

void Init(){
    tot = tot1 = 0;
    memset(head, -1, sizeof head);
}

void Add(int u, int v){
    a[++tot].to = v, a[tot].nex = head[u], head[u] = tot;
}

void Dfs(int k, int f){
    tot1++;
    L[k] = tot1;
    for(int i = head[k]; i != -1; i = a[i].nex){
        if(a[i].to == f) continue;
        Dfs(a[i].to, k);
    }
    R[k] = tot1;
}

void Pushdown(int k){
    if(!T[k].tag) return;
    T[k<<1].tag ^= 1;
    T[k<<1|1].tag ^= 1;
    T[k<<1].v = T[k<<1].r-T[k<<1].l+1-T[k<<1].v;
    T[k<<1|1].v = T[k<<1|1].r-T[k<<1|1].l+1-T[k<<1|1].v;
    T[k].tag = 0;
}

void Pushup(int k){
    T[k].v = T[k<<1].v+T[k<<1|1].v;
}

void Build(int l, int r, int k){
    T[k].l = l, T[k].r = r;
    T[k].v = T[k].tag = 0;
    if(l == r) return;
    int mid = (l+r)>>1;
    Build(l, mid, k<<1);
    Build(mid+1, r, k<<1|1);
    Pushup(k);
}

void Update(int l, int r, int k){
    if(l <= T[k].l && r >= T[k].r){
        T[k].tag ^= 1;
        T[k].v = T[k].r-T[k].l+1-T[k].v;
        return;
    }
    Pushdown(k);
    int mid = (T[k].l+T[k].r)>>1;
    if(r <= mid) Update(l, r, k<<1);
    else if(l > mid) Update(l, r, k<<1|1);
    else{
        Update(l, mid, k<<1);
        Update(mid+1, r, k<<1|1);
    }
    Pushup(k);
}

int ans;
void Query(int l, int r, int k){
    if(l <= T[k].l && r >= T[k].r){
        ans += T[k].v;
        return;
    }
    if(T[k].l == T[k].r) return;
    Pushdown(k);
    int mid = (T[k].l+T[k].r)>>1;
    if(r <= mid) Query(l, r, k<<1);
    else if(l > mid) Query(l, r, k<<1|1);
    else{
        Query(l, mid, k<<1);
        Query(mid+1, r, k<<1|1);
    }
}

int main(){
    while(scanf("%d", &n) == 1){
        Init();
        int x;
        char op[5];
        for(int i = 2; i <= n; i++){
            scanf("%d", &x);
            Add(x, i); Add(i, x);
        }
        Dfs(1, 0);
        Build(1, n, 1);
        printf("\n");
        for(int i = 1; i <= n; i++){
            scanf("%d", &x);
            if(x) Update(L[i], L[i], 1);
        }
        scanf("%d", &m);
        while(m--){
            scanf("%s%d", op, &x);
            if(op[0] == 'g'){
                ans = 0;
                Query(L[x], R[x], 1);
                printf("%d\n", ans);
            }
            else Update(L[x], R[x], 1);
        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值