A11495 | Jamie and Tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
To your surprise, Jamie is the final boss! Ehehehe.
Jamie has given you a tree with $n$ vertices, numbered from $1$ to $n$ . Initially, the root of the tree is the vertex with number $1$ . Also, each vertex has a value on it.
Jamie also gives you three types of queries on the tree:
$1\ v$ — Change the tree's root to vertex with number $v$ .
$2\ u\ v\ x$ — For each vertex in the subtree of smallest size that contains $u$ and $v$ , add $x$ to its value.
$3\ v$ — Find sum of values of vertices in the subtree of vertex with number $v$ .
A subtree of vertex $v$ is a set of vertices such that $v$ lies on shortest path from this vertex to root of the tree. Pay attention that subtree of a vertex can change after changing the tree's root.
Show your strength in programming to Jamie by performing the queries accurately!
Jamie has given you a tree with $n$ vertices, numbered from $1$ to $n$ . Initially, the root of the tree is the vertex with number $1$ . Also, each vertex has a value on it.
Jamie also gives you three types of queries on the tree:
$1\ v$ — Change the tree's root to vertex with number $v$ .
$2\ u\ v\ x$ — For each vertex in the subtree of smallest size that contains $u$ and $v$ , add $x$ to its value.
$3\ v$ — Find sum of values of vertices in the subtree of vertex with number $v$ .
A subtree of vertex $v$ is a set of vertices such that $v$ lies on shortest path from this vertex to root of the tree. Pay attention that subtree of a vertex can change after changing the tree's root.
Show your strength in programming to Jamie by performing the queries accurately!
输入格式
The first line of input contains two space-separated integers $n$ and $q$ ( $1<=n<=10^{5},1<=q<=10^{5}$ ) — the number of vertices in the tree and the number of queries to process respectively.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $-10^{8}<=a_{i}<=10^{8}$ ) — initial values of the vertices.
Next $n-1$ lines contains two space-separated integers $u_{i},v_{i}$ ( $1<=u_{i},v_{i}<=n$ ) describing edge between vertices $u_{i}$ and $v_{i}$ in the tree.
The following $q$ lines describe the queries.
Each query has one of following formats depending on its type:
$1\ v$ ( $1<=v<=n$ ) for queries of the first type.
$2\ u\ v\ x$ ( $1<=u,v<=n,-10^{8}<=x<=10^{8}$ ) for queries of the second type.
$3\ v$ ( $1<=v<=n$ ) for queries of the third type.
All numbers in queries' descriptions are integers.
The queries must be carried out in the given order. It is guaranteed that the tree is valid.
The second line contains $n$ space-separated integers $a_{1},a_{2},...,a_{n}$ ( $-10^{8}<=a_{i}<=10^{8}$ ) — initial values of the vertices.
Next $n-1$ lines contains two space-separated integers $u_{i},v_{i}$ ( $1<=u_{i},v_{i}<=n$ ) describing edge between vertices $u_{i}$ and $v_{i}$ in the tree.
The following $q$ lines describe the queries.
Each query has one of following formats depending on its type:
$1\ v$ ( $1<=v<=n$ ) for queries of the first type.
$2\ u\ v\ x$ ( $1<=u,v<=n,-10^{8}<=x<=10^{8}$ ) for queries of the second type.
$3\ v$ ( $1<=v<=n$ ) for queries of the third type.
All numbers in queries' descriptions are integers.
The queries must be carried out in the given order. It is guaranteed that the tree is valid.
输出格式
For each query of the third type, output the required answer. It is guaranteed that at least one query of the third type is given by Jamie.
输入输出样例
输入 #1
6 7 1 4 2 8 5 7 1 2 3 1 4 3 4 5 3 6 3 1 2 4 6 3 3 4 1 6 2 2 4 -5 1 4 3 3
输出 #1
27 19 5
输入 #2
4 6 4 3 5 6 1 2 2 3 3 4 3 1 1 3 2 2 4 3 1 1 2 2 4 -3 3 1
输出 #2
18 21
The following picture shows how the tree varies after the queries in the first sample.


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