CF877E.Danil and a Part-time Job
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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:
- pow v describes a task to switch lights in the subtree of vertex v .
- 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 p2,p3,...,pn ( 1<=p_{i}<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<=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
说明/提示
The tree before the task pow 1.
The tree after the task pow 1.