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 nn vertices, vertex 11 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 vv .
  2. get v describes a task to count the number of rooms in the subtree of vv , in which the light is turned on. Danil should send the answer to his boss using Workforces messages.

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

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 nn ( 1<=n<=2000001<=n<=200000 ) — the number of vertices in the tree.

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

The third line contains nn space-separated integers t1,t2,...,tnt_{1},t_{2},...,t_{n} ( 0<=ti<=10<=t_{i}<=1 ), where tit_{i} is 11 , if the light is turned on in vertex ii and 00 otherwise.

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

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

输出格式

For each task get v print the number of rooms in the subtree of vv , 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.

首页