CF1691F.K-Set Tree

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a tree GG with nn vertices and an integer kk . The vertices of the tree are numbered from 11 to nn .

For a vertex rr and a subset SS of vertices of GG , such that S=k|S| = k , we define f(r,S)f(r, S) as the size of the smallest rooted subtree containing all vertices in SS when the tree is rooted at rr . A set of vertices TT is called a rooted subtree, if all the vertices in TT are connected, and for each vertex in TT , all its descendants belong to TT .

You need to calculate the sum of f(r,S)f(r, S) over all possible distinct combinations of vertices rr and subsets SS , where S=k|S| = k . Formally, compute the following: $$$$\sum_{r \in V} \sum_{S \subseteq V, |S| = k} f(r, S), $$ where VV is the set of vertices in GG .

Output the answer modulo 109+710^9 + 7$$.

输入格式

The first line contains two integers nn and kk ( 3n21053 \le n \le 2 \cdot 10^5 , 1kn1 \le k \le n ).

Each of the following n1n - 1 lines contains two integers xx and yy ( 1x,yn1 \le x, y \le n ), denoting an edge between vertex xx and yy .

It is guaranteed that the given edges form a tree.

输出格式

Print the answer modulo 109+710^9 + 7 .

输入输出样例

  • 输入#1

    3 2
    1 2
    1 3

    输出#1

    25
  • 输入#2

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

    输出#2

    849

说明/提示

The tree in the second example is given below:

We have 2121 subsets of size 22 in the given tree. Hence, $$$$S \in \left{{1, 2}, {1, 3}, {1, 4}, {1, 5}, {1, 6}, {1, 7}, {2, 3}, {2, 4}, {2, 5}, {2, 6}, {2, 7}, {3, 4}, {3, 5}, {3, 6}, {3, 7}, {4, 5}, {4, 6}, {4, 7}, {5, 6}, {5, 7}, {6, 7} \right}. $$ And since we have 77 vertices, 1lerle71 \\le r \\le 7 . We need to find the sum of f(r,S)f(r, S) over all possible pairs of rr and SS .

Below we have listed the value of f(r,S)f(r, S) for some combinations of rr and SS .

  • r=1r = 1 , S=3,7S = \\{3, 7\\} . The value of f(r,S)f(r, S) is 55 and the corresponding subtree is 2,3,4,6,7\\{2, 3, 4, 6, 7\\} .
  • r=1r = 1 , S=5,4S = \\{5, 4\\} . The value of f(r,S)f(r, S) is 77 and the corresponding subtree is 1,2,3,4,5,6,7\\{1, 2, 3, 4, 5, 6, 7\\} .
  • r=1r = 1 , S=4,6S = \\{4, 6\\} . The value of f(r,S)f(r, S) is 33 and the corresponding subtree is 4,6,7\\{4, 6, 7\\}$$.

首页