Problem1540--CF833 - D. Red-Black Cobweb

1540: CF833 - D. Red-Black Cobweb

[Creator : ]
Time Limit : 2.000 sec  Memory Limit : 256 MiB

Description



Slastyona likes to watch life of nearby grove's dwellers. This time she watches a strange red-black spider sitting at the center of a huge cobweb.
The cobweb is a set of n nodes connected by threads, each of the treads is either red of black. Using these threads, the spider can move between nodes. No thread connects a node to itself, and between any two nodes there is a unique sequence of threads connecting them.
Slastyona decided to study some special qualities of the cobweb. She noticed that each of the threads has a value of clamminess $x$.
However, Slastyona is mostly interested in jelliness of the cobweb. Consider those of the shortest paths between each pair of nodes on which the numbers of red and black threads differ at most twice. For each such path compute the product of the clamminess of threads on the path.The jelliness of the cobweb is the product of all obtained values among all paths. Those paths that differ by direction only are counted only once.
Of course, this number can be huge, so Slastyona asks you to compute the jelliness of the given cobweb and print the answer modulo $10^9+ 7$.

Input

The first line contains the number of nodes $n\ (2≤n≤10^5)$.
The next $n-1$ lines contain four integers each, denoting the $i$-th thread of the cobweb: the nodes it connects $u_i,v_i\ (1≤u_i≤n,\ 1≤v_i≤n)$, the clamminess of the thread $x_i\ (1≤x≤10^9+6)$, and the color of the thread $c_i\ (c_i \in \{0,1\})$. The red color is denoted by 0, and the black color is denoted by 1.

Output

Print single integer the jelliness of the cobweb modulo $10^9+7$. If there are no paths such that the numbers of red and black threads differ at most twice, print $1$.

Sample 1 Input

5
1 2 9 0
2 3 5 1
2 4 5 0
2 5 5 1

Sample 1 Output

1265625
there are 4 pairs of nodes such that the numbers of threads of both colors on them differ at most twice. There pairs are (1, 3) with product of clamminess equal to 45, (1, 5) with product of clamminess equal to 45, (3, 4) with product of clamminess equal to 25 and (4, 5) with product of clamminess equal to 25. The jelliness of the cobweb is equal to 1265625.

Sample 2 Input

8
1 2 7 1
2 3 4 1
3 4 19 1
5 1 2 0
6 2 3 0
7 3 3 0
8 4 4 0

Sample 2 Output

452841614

HINT

CF833D.

Source/Category