#ABC163F. path pass i
path pass i
题目描述
We have a tree with vertices numbered to . The -th edge in this tree connects Vertex and . Additionally, each vertex is painted in a color, and the color of Vertex is . Here, the color of each vertex is represented by an integer between and (inclusive). The same integer corresponds to the same color; different integers correspond to different colors.
For each , solve the following problem:
- Find the number of simple paths that visit a vertex painted in the color one or more times.
Note: The simple paths from Vertex to and from to are not distinguished.
我们有一棵树,树上有 个顶点,编号从 到 。树中的 条边连接顶点 和 。此外,每个顶点都涂有一种颜色,顶点 的颜色是 。在这里,每个顶点的颜色由一个介于 和 之间的整数表示。(包括在内)。相同的整数对应相同的颜色,不同的整数对应不同的颜色。
请为每个 解决以下问题:
- 求访问颜色为 的顶点一次或多次的简单路径的数目。
注: 从顶点 到 以及从 到 的简单路径不作区分。
输入格式
输入内容按以下格式标准输入:
输出格式
依次打印 的答案,每个答案各占一行。
样例 #1
样例输入 #1
3
1 2 1
1 2
2 3
样例输出 #1
5
4
0
样例 #2
样例输入 #2
1
1
样例输出 #2
1
样例 #3
样例输入 #3
2
1 2
1 2
样例输出 #3
2
2
样例 #4
样例输入 #4
5
1 2 3 4 5
1 2
2 3
3 4
3 5
样例输出 #4
5
8
10
5
5
样例 #5
样例输入 #5
8
2 7 2 5 4 1 7 5
3 1
1 2
2 7
4 5
5 6
6 8
7 8
样例输出 #5
18
15
0
14
23
0
23
0
说明
数据规模与约定
- 给定图形是一棵树。
- 输入值均为整数。
样例 解释
让 表示连接顶点 和 的简单路径。
有 条简单路径访问过一个或多个颜色为 的顶点:
有 条简单路径访问了一个颜色为 的顶点一次或多次:
没有简单路径能访问一个颜色为 的顶点一次或多次。