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

A11495. Jamie and Tree

编程题 普及/提高-

题目描述

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!

输入格式

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.

输出格式

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.

![](/uploads/acgo/image/74537942e97b81b5_40eea58091b1.jpeg)
上一题 去做题 下一题