CF1797D.Li Hua and Tree

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Li Hua has a tree of nn vertices and n1n-1 edges. The root of the tree is vertex 11 . Each vertex ii has importance aia_i . Denote the size of a subtree as the number of vertices in it, and the importance as the sum of the importance of vertices in it. Denote the heavy son of a non-leaf vertex as the son with the largest subtree size. If multiple of them exist, the heavy son is the one with the minimum index.

Li Hua wants to perform mm operations:

  • "1 xx " ( 1xn1\leq x \leq n ) — calculate the importance of the subtree whose root is xx .
  • "2 xx " ( 2xn2\leq x \leq n ) — rotate the heavy son of xx up. Formally, denote sonxson_x as the heavy son of xx , faxfa_x as the father of xx . He wants to remove the edge between xx and faxfa_x and connect an edge between sonxson_x and faxfa_x . It is guaranteed that xx is not root, but not guaranteed that xx is not a leaf. If xx is a leaf, please ignore the operation.

Suppose you were Li Hua, please solve this problem.

输入格式

The first line contains 2 integers n,mn,m ( 2n105,1m1052\le n\le 10^{5},1\le m\le 10^{5} ) — the number of vertices in the tree and the number of operations.

The second line contains nn integers a1,a2,,ana_{1},a_{2},\ldots ,a_{n} ( 109ai109-10^{9}\le a_{i}\le 10^{9} ) — the importance of each vertex.

Next n1n-1 lines contain the edges of the tree. The ii -th line contains two integers uiu_i and viv_i ( 1ui,vin1\le u_i,v_i\le n , uiviu_i\ne v_i ) — the corresponding edge. The given edges form a tree.

Next mm lines contain operations — one operation per line. The jj -th operation contains two integers tj,xjt_{j},x_{j} ( tj{1,2}t_{j}\in \{1,2\} , 1xjn1 \leq x_{j} \leq n , xj1x_{j}\neq 1 if tj=2t_j = 2 ) — the jj -th operation.

输出格式

For each query "1 xx ", output the answer in an independent line.

输入输出样例

  • 输入#1

    7 4
    1 1 1 1 1 1 1
    1 2
    1 3
    2 4
    2 5
    3 6
    6 7
    1 6
    2 3
    1 6
    1 2

    输出#1

    2
    3
    3
  • 输入#2

    10 14
    -160016413 -90133231 -671446275 -314847579 -910548234 121155052 -359359950 83112406 -704889624 145489303
    1 6
    1 10
    10 8
    1 4
    3 4
    2 7
    2 5
    3 2
    9 8
    1 4
    2 2
    2 4
    1 4
    1 10
    2 10
    1 9
    1 6
    2 8
    2 10
    1 5
    1 8
    1 1
    2 5

    输出#2

    -2346335269
    -314847579
    -476287915
    -704889624
    121155052
    -1360041415
    228601709
    -2861484545

说明/提示

In the first example:

The initial tree is shown in the following picture:

The importance of the subtree of 66 is a6+a7=2a_6+a_7=2 .

After rotating the heavy son of 33 (which is 66 ) up, the tree is shown in the following picture:

The importance of the subtree of 66 is a6+a3+a7=3a_6+a_3+a_7=3 .

The importance of the subtree of 22 is a2+a4+a5=3a_2+a_4+a_5=3 .

首页