#ABC149F. Surrounded Nodes
Surrounded Nodes
题目描述
Given is a tree with vertices. The -th edge connects Vertex and ().
Now, each vertex is painted black with probability and white with probability , which is chosen independently from other vertices. Then, let be the smallest subtree (connected subgraph) of containing all the vertices painted black. (If no vertex is painted black, is the empty graph.)
Let the holeyness of be the number of white vertices contained in . Find the expected holeyness of .
Since the answer is a rational number, we ask you to print it , as described in Notes.
给出一棵树 ,有 个顶点。第 条边连接顶点 和 ( )。
现在,每个顶点都被涂成黑色,概率为 ,涂成白色的概率为 ,与其他顶点无关。那么,假设 是包含所有涂黑顶点的 的最小子树(连通子图)。(如果没有顶点涂黑, 就是空图)。
设 的洞度为 中包含的白色顶点的个数。求 的期望洞度。
由于答案是有理数,因此请您按照注释中的说明打印出 。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 , 的预期洞度。
样例 #1
样例输入 #1
3
1 2
2 3
样例输出 #1
125000001
样例 #2
样例输入 #2
4
1 2
2 3
3 4
样例输出 #2
375000003
样例 #3
样例输入 #3
4
1 2
1 3
1 4
样例输出 #3
250000002
样例 #4
样例输入 #4
7
4 7
3 1
2 6
5 2
7 1
2 7
样例输出 #4
570312505
说明
打印有理数时,首先将其写成分数 ,其中 是整数,而 不能被 整除(在问题的限制条件下,这样的表示总是可能的)。
然后,您需要打印出 和 之间唯一满足 的整数 。
数据规模与约定
- 给定的图形是一棵树。
样例 解释
如果将顶点 分别涂成黑色、白色、黑色,那么 的洞度为 。
否则,洞度为 ,因此预期洞度为 。
由于 ,我们应该打印 。
样例 解释
预期洞度为 。
由于 ,我们应该打印 。
样例 解释
预期洞度为 。