测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11466. Danil and a Part-time Job

编程题 普及/提高-

题目描述

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.

输入格式

The first line contains a single integer $n$ ( $1<=n<=200000$ ) — the number of vertices in the tree.

The second line contains $n-1$ space-separated integers $p_{2},p_{3},...,p_{n}$ ( $1<=p_{i}<i$ ), where $p_{i}$ is the ancestor of vertex $i$ .

The third line contains $n$ space-separated integers $t_{1},t_{2},...,t_{n}$ ( $0<=t_{i}<=1$ ), where $t_{i}$ is $1$ , if the light is turned on in vertex $i$ and $0$ otherwise.

The fourth line contains a single integer $q$ ( $1<=q<=200000$ ) — the number of tasks.

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

输出格式

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

输入输出样例

输入 #1
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
输出 #1
2
0
0
1
2
1
1
0

说明/提示

![](/uploads/luogu/CF877E/76e99838c9d4f0aba9dd5ef366e55343e705a02b_3c6384c93838.png)The tree before the task pow 1.![](/uploads/acgo/image/81c2f500b0ef4a7e_c04ae999dd3b.jpeg)The tree after the task pow 1.
上一题 去做题 下一题