Nauuo and ODT

题意翻译

给一颗大小为 $n$($2\le n\le 4\cdot 10^5$) 的树,每个点有一个颜色 $c_i$($1\le c_i\le n$) 定义 $dis(u,v)$ 为点 $u$ 到 $v$ 的路径上的颜色数。 现在希望你求出: $$\sum_{i=1}^n\sum_{j=1}^ndis(i,j)$$ 特别的,我们有 $m$ ($1\le m\le 4\cdot 10^5$) 次修改,每次修改一个点的点权,每次修改后,你都需要重新输出上值。注意,你仍然需要输出初始的答案。 所以你的输出应当为 $m+1$ 行。

题目描述

Nauuo is a girl who loves traveling. One day she went to a tree, Old Driver Tree, literally, a tree with an old driver on it. The tree is a connected graph consisting of $ n $ nodes and $ n-1 $ edges. Each node has a color, and Nauuo will visit the ODT through a simple path on the tree in the old driver's car. Nauuo wants to visit see more different colors in her journey, but she doesn't know which simple path she will be traveling on. So, she wants to calculate the sum of the numbers of different colors on all different paths. Can you help her? What's more, the ODT is being redecorated, so there will be $ m $ modifications, each modification will change a single node's color. Nauuo wants to know the answer after each modification too. Note that in this problem, we consider the simple path from $ u $ to $ v $ and the simple path from $ v $ to $ u $ as two different simple paths if and only if $ u\ne v $ .

输入输出格式

输入格式


The first line contains two integers $ n $ and $ m $ ( $ 2\le n\le 4\cdot 10^5 $ , $ 1\le m\le 4\cdot 10^5 $ ) — the number of nodes and the number of modifications. The second line contains $ n $ integers $ c_1,c_2,\ldots,c_n $ ( $ 1\le c_i\le n $ ), where $ c_i $ is the initial color of node $ i $ . Each of the next $ n-1 $ lines contains two integers $ u $ and $ v $ ( $ 1\le u,v\le n $ ), denoting there is an edge between $ u $ and $ v $ . It is guaranteed that the given edges form a tree. Each of the next $ m $ lines contains two integers $ u $ and $ x $ ( $ 1\le u,x\le n $ ), which means a modification that changes the color of node $ u $ into $ x $ .

输出格式


The output contains $ m+1 $ integers — the first integer is the answer at the beginning, the rest integers are the answers after every modification in the given order.

输入输出样例

输入样例 #1

5 3
1 2 1 2 3
1 2
1 3
3 4
3 5
3 3
4 1
4 3

输出样例 #1

47
51
49
45

输入样例 #2

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

输出样例 #2

36
46

说明

Example 1 ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1172E/cea4347b98591996f196f4ec39cfe90abb051b69.png) The number of colors on each simple path at the beginning: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1172E/a8680c8d568c885346e7f8815bda1e8fb496fafc.png)