시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
---|---|---|---|---|---|
3 초 | 512 MB | 4 | 2 | 2 | 66.667% |
Did you now that most standard libraries use red-black tree to implement "set" data structure? In this problem you have to find the number of ways to color the vertices of the given binary tree so that it became red-black. Print the answer modulo 109 + 7.
Consider a binary tree. If the vertex has less than two children, add fake vertices to the potential places of the missing children. The tree is called a red-black tree if the following constraints are satisfied:
Note that the parent of a black vertex can be black itself.
Two ways to color the tree are different if there is a vertex that has different colors.
The picture shows two ways to color the tree from the second test case.
The first line contains one integer n — the number of vertices in a tree (1 ≤ n ≤ 500 000).
The following n lines describe a tree. The i-th of these lines contains two integers li and ri — the indices of the left and the right child of the i-th vertex, or 0 if the corresponding child is missing (li = 0 or i < li ≤ n; ri = 0 or i < ri ≤ n). The root of the tree has number 1. Input describes the correct tree.
Output one integer — the number of ways to color the given tree so that it was a correct red-black tree. The answer must be printed modulo 109 + 7.
3 2 3 0 0 0 0
2
6 2 4 3 0 0 0 5 6 0 0 0 0
2