CF1517F.Reunion
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
It is reported that the 2050 Conference will be held in Yunqi Town in Hangzhou from April 23 to 25, including theme forums, morning jogging, camping and so on.
The relationship between the n volunteers of the 2050 Conference can be represented by a tree (a connected undirected graph with n vertices and n−1 edges). The n vertices of the tree corresponds to the n volunteers and are numbered by 1,2,…,n .
We define the distance between two volunteers i and j , dis (i,j) as the number of edges on the shortest path from vertex i to vertex j on the tree. dis (i,j)=0 whenever i=j .
Some of the volunteers can attend the on-site reunion while others cannot. If for some volunteer x and nonnegative integer r , all volunteers whose distance to x is no more than r can attend the on-site reunion, a forum with radius r can take place. The level of the on-site reunion is defined as the maximum possible radius of any forum that can take place.
Assume that each volunteer can attend the on-site reunion with probability 21 and these events are independent. Output the expected level of the on-site reunion. When no volunteer can attend, the level is defined as −1 . When all volunteers can attend, the level is defined as n .
输入格式
The first line contains a single integer n ( 2≤n≤300 ) denoting the number of volunteers.
Each of the next n−1 lines contains two integers a and b denoting an edge between vertex a and vertex b .
输出格式
Output the expected level modulo 998244353 .
Formally, let M=998244353 . It can be shown that the answer can be expressed as an irreducible fraction qp , where p and q are integers and q≡0(modM) . Output the integer equal to p⋅q−1modM . In other words, output such an integer x that 0≤x<M and x⋅q≡p(modM) .
输入输出样例
输入#1
3 1 2 2 3
输出#1
499122177
输入#2
5 1 2 2 3 3 4 3 5
输出#2
249561089
输入#3
10 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10
输出#3
821796866
说明/提示
For the first example, the following table shows all possible outcomes. yes means the volunteer can attend the on-site reunion and no means he cannot attend. $$$$\begin{array}{cccc} 1 & 2 & 3 & level\ yes & yes & yes & 3\ yes & yes & no & 1\ yes & no & yes & 0\ yes & no & no & 0\ no & yes & yes & 1\ no & yes & no & 0\ no & no & yes & 0\ no & no & no & -1\ \end{array} $$ The expected level is frac3+1+1+(−1)23=frac12$$.