#ABC152F. Low Elements
Low Elements
题目描述
We have a tree with vertices numbered to . The -th edge in this tree connects Vertex and Vertex .
Consider painting each of these edges white or black. There are such ways to paint the edges. Among them, how many satisfy all of the following restrictions?
- The -th restriction is represented by two integers and , which mean that the path connecting Vertex and Vertex must contain at least one edge painted black.
我们有一棵树,树上有 个顶点,编号为 至 。树中的第 条边连接顶点 和顶点 。
考虑将这些边分别涂成白色或黑色。有 种涂边方式。其中有多少种满足以下所有 限制?
- /- 个限制由两个整数 和 表示,这意味着连接顶点 和顶点 的路径必须至少包含一条涂成黑色的边。
输入格式
输入内容按以下格式标准输入:
输出格式
打印满足所有 条件的边缘涂画方式的数量。
样例 #1
样例输入 #1
3
1 2
2 3
1
1 3
样例输出 #1
3
样例 #2
样例输入 #2
2
1 2
1
1 2
样例输出 #2
1
样例 #3
样例输入 #3
5
1 2
3 2
3 4
5 3
3
1 3
2 4
2 5
样例输出 #3
9
样例 #4
样例输入 #4
8
1 2
2 3
4 3
2 5
6 3
6 7
8 6
5
2 7
3 5
1 6
2 8
7 8
样例输出 #4
62
说明
数据规模与约定
- 输入的图形是一棵树
- 如果是 ,则是 或 。
- 输入值均为整数。
样例 解释
该输入的树形图如下:
如果边 和 分别被涂成(白色、黑色)、(黑色、白色)或(黑色、黑色),那么所有的 限制都将得到满足,因此答案为 。
样例 解释
该输入的树形图如下:
只有将边 涂成黑色,才能满足所有的 限制,因此答案为 。
样例 解释
该输入的树形图如下所示:
样例 解释
该输入的树形图如下所示: