Jamie and Tree

题意翻译

有一棵 $n$ 个节点的有根树,标号为 $1\sim n$,你需要维护以下三种操作 1. `1 v`:给定一个点 $v$,将整颗树的根变为 $v$。 2. `2 u v x`:给定两个点 $u,v$ 和整数 $x$,将 $\operatorname{lca}(u, v)$ 为根的子树的所有点的点权都加上 $x$。 3. `3 v`:给定一个点 $v$,你需要回答以 $v$ 所在的子树的所有点的权值和。 Translated by mangoyang

题目描述

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. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF916E/9b296178af98e90dbbac00c785fb2ed88745e7bd.png)