305841: CF1097G. Vladislav and a Great Legend
Memory Limit:512 MB
Time Limit:3 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Vladislav and a Great Legend
题意翻译
## 题目描述 给你一棵有$n$个节点的树$T$,$n$个节点编号为$1$到$n$。 对于$T$中每个非空的顶点的集合$X$,令$f(X)$为包含$X$中每个节点的最小连通子树的最小边数,即虚树的大小。 再给你一个整数$k$。你需要计算对于每一个顶点的集合$X$,$(f(X))^k$之和,即: $$\sum_{X\subseteq\{1,2,\dots,n\},X\neq\varnothing}(f(X))^k$$ ## 输入输出格式 ### 输入格式 第一行两个整数$n$和$k(2\leq n\leq 10^5,1\leq k\leq 200)$,表示树的节点个数和$f(X)$的次数 接下来$n-1$行,每一行包含两个正整数$a_i$和$b_i(1\leq a_i,b_i\leq n)$,表示$T$中的每一条边。 数据保证一定是一棵树。 ### 输出格式 一行一个整数,表示所求的答案对$10^9+7$取模后的值。题目描述
A great legend used to be here, but some troll hacked Codeforces and erased it. Too bad for us, but in the troll society he earned a title of an ultimate-greatest-over troll. At least for them, it's something good. And maybe a formal statement will be even better for us? You are given a tree $ T $ with $ n $ vertices numbered from $ 1 $ to $ n $ . For every non-empty subset $ X $ of vertices of $ T $ , let $ f(X) $ be the minimum number of edges in the smallest connected subtree of $ T $ which contains every vertex from $ X $ . You're also given an integer $ k $ . You need to compute the sum of $ (f(X))^k $ among all non-empty subsets of vertices, that is: $$\sum\limits_{X \subseteq \{1, 2,\: \dots \:, n\},\, X \neq \varnothing} (f(X))^k.$$输入输出格式
输入格式
The first line contains two integers $ n $ and $ k $ ( $ 2 \leq n \leq 10^5 $ , $ 1 \leq k \leq 200 $ ) — the size of the tree and the exponent in the sum above. Each of the following $ n - 1 $ lines contains two integers $ a_i $ and $ b_i $ ( $ 1 \leq a_i,b_i \leq n $ ) — the indices of the vertices connected by the corresponding edge. It is guaranteed, that the edges form a tree.
输出格式
Print a single integer — the requested sum modulo $ 10^9 + 7 $ .
输入输出样例
输入样例 #1
4 1
1 2
2 3
2 4
输出样例 #1
21
输入样例 #2
4 2
1 2
2 3
2 4
输出样例 #2
45
输入样例 #3
5 3
1 2
2 3
3 4
4 5
输出样例 #3
780