题库练习 Diameter Cuts
← 上一题 下一题 →

A14264 | Diameter Cuts

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given an integer $k$ and an undirected tree, consisting of $n$ vertices.

The length of a simple path (a path in which each vertex appears at most once) between some pair of vertices is the number of edges in this path. A diameter of a tree is the maximum length of a simple path between all pairs of vertices of this tree.

You are about to remove a set of edges from the tree. The tree splits into multiple smaller trees when the edges are removed. The set of edges is valid if all the resulting trees have diameter less than or equal to $k$ .

Two sets of edges are different if there is an edge such that it appears in only one of the sets.

Count the number of valid sets of edges modulo $998\,244\,353$ .

输入格式

The first line contains two integers $n$ and $k$ ( $2 \le n \le 5000$ , $0 \le k \le n - 1$ ) — the number of vertices of the tree and the maximum allowed diameter, respectively.

Each of the next $n-1$ lines contains a description of an edge: two integers $v$ and $u$ ( $1 \le v, u \le n$ , $v \neq u$ ).

The given edges form a tree.

输出格式

Print a single integer — the number of valid sets of edges modulo $998\,244\,353$ .

输入输出样例

输入 #1
4 3
1 2
1 3
1 4
输出 #1
8
输入 #2
2 0
1 2
输出 #2
1
输入 #3
6 2
1 6
2 4
2 6
3 6
5 6
输出 #3
25
输入 #4
6 3
1 2
1 5
2 3
3 4
5 6
输出 #4
29
C++ 编辑器
输入
输出