A11466 | Danil and a Part-time Job
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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
The tree before the task pow 1.The tree after the task pow 1.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted