CF1254E.Send Tree to Charlie
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Christmas was knocking on the door, and our protagonist, Bob, was preparing a spectacular present for his long-time second best friend Charlie. As chocolate boxes are lame, he decided to decorate a tree instead. Bob's tree can be represented as an undirected connected graph with n nodes (numbered 1 to n ) and n−1 edges. Initially, Bob placed a decoration with label i on node i , for each 1≤i≤n . However, as such a simple arrangement is lame, he decided to shuffle the decorations a bit. Formally, Bob did the following steps:
- First, he listed the n−1 edges in some order.
- Then, he considered the edges one by one in that order. For each edge (u,v) , he swapped the decorations of node u with the one of node v .
After finishing, Bob seemed satisfied with the arrangement, so he went to sleep.
The next morning, Bob wakes up only to find out that his beautiful arrangement has been ruined! Last night, Bob's younger brother Bobo dropped some of the decorations on the floor while he was playing with the tree. Fortunately, no decorations were lost, so Bob can repair the tree in no time. However, he completely forgets how the tree looked like yesterday. Therefore, given the labels of the decorations still on the tree, Bob wants to know the number of possible configurations of the tree. As the result can be quite large, Bob will be happy if you can output the result modulo 1000000007 ( 109+7 ). Note that, it is possible that there exists no possible configurations.
输入格式
The first line contains a single integer n ( 2≤n≤500000 ) — the number of nodes.
Each of the next n−1 lines contains two integers u and v ( 1≤u,v≤n ), denoting that there is an edge connecting two nodes u and v . It is guaranteed that the given edges form a tree.
The last line contains n integers a1,a2,…,an ( 0≤ai≤n ). For each i , ai=0 means that the decoration of node i has been dropped on the floor. Otherwise, ai is the label of the decoration of node i . It is guaranteed that no label appears more than once.
输出格式
Output the number of possible configurations modulo 1000000007 ( 109+7 ).
输入输出样例
输入#1
4 3 4 2 4 4 1 0 4 0 0
输出#1
2
输入#2
5 1 2 2 4 3 4 5 4 0 0 0 0 0
输出#2
12
输入#3
3 1 2 1 3 1 0 0
输出#3
0
说明/提示
In the first example, the possible configurations of the tree are [2,4,1,3] and [3,4,2,1] .
In the second example, note that while there are 4!=24 possible permutations of the edges, each of them results in a possible configuration, there are only 12 different configurations.
In the third example, it is easy to see that the decoration 1 cannot stay at node 1 after the swaps.