#D11241. Tree
Tree
Tree
G: Tree
problem
Given a tree consisting of N vertices. Each vertex of the tree is numbered from 1 to N. Of the N-1 edges, the i \ (= 1, 2, ..., N-1) edge connects the vertex u_i and the vertex v_i.
Write a program to find the number of K non-empty subgraph sets of this tree, each of which is concatenated and no two different subgraphs share vertices. However, the answer can be very large, so answer the remainder divided by 998244353.
Note that if the set of K subgraphs is the same, the ones with different order of K subgraphs are also equated.
Input format
N K u_1 v_1 :: u_ {N-1} v_ {N-1}
Constraint
- 2 \ leq N \ leq 10 ^ {5}
- 1 \ leq K \ leq min (N, 300)
- 1 \ leq u_i, v_i \ leq N
- u_i \ neq v_i
- For i \ neq j (u_i, v_i) \ neq (u_j, v_j)
- All inputs are given as integers.
- The graph given is guaranteed to be a tree.
Output format
Print the integer that represents the answer on one line. Note that it prints too much divided by 998244353.
Input example 1
3 2 1 2 13
Output example 1
Five
There are five ways:
- \ {1 \} and \ {2 \}
- \ {1 \} and \ {3 \}
- \ {2 \} and \ {3 \}
- \ {1, 2 \} and \ {3 \}
- \ {1, 3 \} and \ {2 \}
Input example 2
4 4 1 2 13 14
Output example 2
1
There is only one way (\ {1 \}, \ {2 \}, \ {3 \}, \ {4 \}).
Input example 3
7 4 1 7 twenty one 7 4 3 4 5 7 6 3
Output example 3
166
Example
Input
3 2 1 2 1 3
Output
5
inputFormat
Input format
N K u_1 v_1 :: u_ {N-1} v_ {N-1}
Constraint
- 2 \ leq N \ leq 10 ^ {5}
- 1 \ leq K \ leq min (N, 300)
- 1 \ leq u_i, v_i \ leq N
- u_i \ neq v_i
- For i \ neq j (u_i, v_i) \ neq (u_j, v_j)
- All inputs are given as integers.
- The graph given is guaranteed to be a tree.
outputFormat
Output format
Print the integer that represents the answer on one line. Note that it prints too much divided by 998244353.
Input example 1
3 2 1 2 13
Output example 1
Five
There are five ways:
- \ {1 \} and \ {2 \}
- \ {1 \} and \ {3 \}
- \ {2 \} and \ {3 \}
- \ {1, 2 \} and \ {3 \}
- \ {1, 3 \} and \ {2 \}
Input example 2
4 4 1 2 13 14
Output example 2
1
There is only one way (\ {1 \}, \ {2 \}, \ {3 \}, \ {4 \}).
Input example 3
7 4 1 7 twenty one 7 4 3 4 5 7 6 3
Output example 3
166
Example
Input
3 2 1 2 1 3
Output
5
样例
3 2
1 2
1 3
5