CF1575I.Illusions of the Desert

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Chanek Jones is back, helping his long-lost relative Indiana Jones, to find a secret treasure in a maze buried below a desert full of illusions.

The map of the labyrinth forms a tree with nn rooms numbered from 11 to nn and n1n - 1 tunnels connecting them such that it is possible to travel between each pair of rooms through several tunnels.

The ii -th room ( 1in1 \leq i \leq n ) has aia_i illusion rate. To go from the xx -th room to the yy -th room, there must exist a tunnel between xx and yy , and it takes max(ax+ay,axay)\max(|a_x + a_y|, |a_x - a_y|) energy. z|z| denotes the absolute value of zz .

To prevent grave robbers, the maze can change the illusion rate of any room in it. Chanek and Indiana would ask qq queries.

There are two types of queries to be done:

  • 1 u c1\ u\ c — The illusion rate of the xx -th room is changed to cc ( 1un1 \leq u \leq n , 0c1090 \leq |c| \leq 10^9 ).
  • 2 u v2\ u\ v — Chanek and Indiana ask you the minimum sum of energy needed to take the secret treasure at room vv if they are initially at room uu ( 1u,vn1 \leq u, v \leq n ).

Help them, so you can get a portion of the treasure!

输入格式

The first line contains two integers nn and qq ( 2n1052 \leq n \leq 10^5 , 1q1051 \leq q \leq 10^5 ) — the number of rooms in the maze and the number of queries.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 0ai1090 \leq |a_i| \leq 10^9 ) — inital illusion rate of each room.

The ii -th of the next n1n-1 lines contains two integers sis_i and tit_i ( 1si,tin1 \leq s_i, t_i \leq n ), meaning there is a tunnel connecting sis_i -th room and tit_i -th room. The given edges form a tree.

The next qq lines contain the query as described. The given queries are valid.

输出格式

For each type 22 query, output a line containing an integer — the minimum sum of energy needed for Chanek and Indiana to take the secret treasure.

输入输出样例

  • 输入#1

    6 4
    10 -9 2 -1 4 -6
    1 5
    5 4
    5 6
    6 2
    6 3
    2 1 2
    1 1 -3
    2 1 2
    2 3 3

    输出#1

    39
    32
    0

说明/提示

In the first query, their movement from the 11 -st to the 22 -nd room is as follows.

  • 151 \rightarrow 5 — takes max(10+4,104)=14\max(|10 + 4|, |10 - 4|) = 14 energy.
  • 565 \rightarrow 6 — takes max(4+(6),4(6))=10\max(|4 + (-6)|, |4 - (-6)|) = 10 energy.
  • 626 \rightarrow 2 — takes max(6+(9),6(9))=15\max(|-6 + (-9)|, |-6 - (-9)|) = 15 energy.

In total, it takes 3939 energy.In the second query, the illusion rate of the 11 -st room changes from 1010 to 3-3 .

In the third query, their movement from the 11 -st to the 22 -nd room is as follows.

  • 151 \rightarrow 5 — takes max(3+4,34)=7\max(|-3 + 4|, |-3 - 4|) = 7 energy.
  • 565 \rightarrow 6 — takes max(4+(6),4(6))=10\max(|4 + (-6)|, |4 - (-6)|) = 10 energy.
  • 626 \rightarrow 2 — takes max(6+(9),6(9))=15\max(|-6 + (-9)|, |-6 - (-9)|) = 15 energy.

Now, it takes 3232 energy.

首页