CF1276D.Tree Elimination
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vasya has a tree with n vertices numbered from 1 to n , and n−1 edges numbered from 1 to n−1 . Initially each vertex contains a token with the number of the vertex written on it.
Vasya plays a game. He considers all edges of the tree by increasing of their indices. For every edge he acts as follows:
- If both endpoints of the edge contain a token, remove a token from one of the endpoints and write down its number.
- Otherwise, do nothing.
The result of the game is the sequence of numbers Vasya has written down. Note that there may be many possible resulting sequences depending on the choice of endpoints when tokens are removed.
Vasya has played for such a long time that he thinks he exhausted all possible resulting sequences he can obtain. He wants you to verify him by computing the number of distinct sequences modulo 998244353 .
输入格式
The first line contains a single integer n ( 2≤n≤2⋅105 ) — the number of vertices of the tree.
The next n−1 lines describe edges of the tree. The i -th of these lines contains two integers ui,vi ( 1≤ui,vi≤n ) — endpoints of the edge with index i . It is guaranteed that the given graph is indeed a tree.
输出格式
Print a single integer — the number of distinct sequences modulo 998244353 .
输入输出样例
输入#1
5 1 2 1 3 1 4 1 5
输出#1
5
输入#2
7 7 2 7 6 1 2 7 5 4 7 3 5
输出#2
10
说明/提示
In the first sample case the distinct sequences are (1),(2,1),(2,3,1),(2,3,4,1),(2,3,4,5) .
Int the second sample case the distinct sequences are (2,6,5,3),(2,6,5,7),(2,6,7,2),(2,6,7,5),(2,7,3),(2,7,5),(7,1,3),(7,1,5),(7,2,3),(7,2,5) .