PivotOJ

Šarenlist

시간 제한: 1000ms메모리 제한: 512MB출처: COCI 2021-2022BOJ 24473

문제

Warm summer night. Vito and his friend, Karlo, are lying in a forest clearing and watching the stars. Suddenly, Vito exclaims “Karlo, look! The trees around us are changing colors!” “Wooow so colorful” said Karlo, amazed. Indeed, the tree branches in the forest started to change colors.

Fascinated by the colorful trees, Vito and Karlo noticed a couple of facts about them. Each of the trees they are looking at can be represented as a tree graph, i.e. an undirected graph in which there exists a unique path between each pair of nodes. The trees they are looking at have the property that each edge of the tree is colored in one of kk different colors. Some of the paths on the tree are colorful, meaning that such a path contains edges of at least two different colors.

Morning has arrived and the tree magic is now lost. In order to relive this experience, Vito and Karlo ask you to solve the following problem. Given a tree and mm pairs of nodes on the tree, determine the number of different colorings of the tree edges so that each of the mm paths determined by the mm pairs of nodes is colorful. Since this number can be very large, output it modulo 109+710^9 + 7.

입력

The first line contains three positive integers nn, mm and kk (3 ≤ n ≤ 60, 1 ≤ m ≤ 15, 2 ≤ k ≤ 10^9), the number of nodes in the tree, the number of path required to be colorful and the number of possible colors for the tree branches, respectively.

The ii-th of the next n1n - 1 lines contains a pair of positive integers aia_i and bib_i (1 ≤ a_i , b_i ≤ n), representing an edge of the tree.

The jj-th of the next mm lines contains a pair of positive integers cjc_j and djd_j (1 ≤ c_j , d_j ≤ n), the labels of the endpoints of the paths which are required to be colorful. The nodes cjc_j and djd_j are not neighbouring.

출력

In the only line print the number of ways to color the tree edges so that each of the mm given paths is colorful, modulo 109+710^9 + 7.

힌트

Clarification of the first example: The tree consists of only two edges, both part of a colorful path between the nodes 1 and 3. So, the two edges must have a different color. One such coloring is obtained by coloring the edge 1-2 in color 1, and 2-3 in color 2, while the other is obtained by switching these color so that 1-2 has color 2, and 2-3 has color 1.

예제

예제 1

입력
3 1 2
1 2
2 3
1 3
출력
2

예제 2

입력
4 3 2
1 2
2 3
4 2
1 4
1 3
4 3
출력
0

예제 3

입력
4 3 3
1 2
2 3
4 2
1 4
1 3
4 3
출력
6
코드를 제출하려면 로그인하세요.