CF855C.Helga Hufflepuff's Cup

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Harry, Ron and Hermione have figured out that Helga Hufflepuff's cup is a horcrux. Through her encounter with Bellatrix Lestrange, Hermione came to know that the cup is present in Bellatrix's family vault in Gringott's Wizarding Bank.

The Wizarding bank is in the form of a tree with total nn vaults where each vault has some type, denoted by a number between 11 to mm . A tree is an undirected connected graph with no cycles.

The vaults with the highest security are of type kk , and all vaults of type kk have the highest security.

There can be at most xx vaults of highest security.

Also, if a vault is of the highest security, its adjacent vaults are guaranteed to not be of the highest security and their type is guaranteed to be less than kk .

Harry wants to consider every possibility so that he can easily find the best path to reach Bellatrix's vault. So, you have to tell him, given the tree structure of Gringotts, the number of possible ways of giving each vault a type such that the above conditions hold.

输入格式

The first line of input contains two space separated integers, nn and mm — the number of vaults and the number of different vault types possible. ( 1<=n<=105,1<=m<=1091<=n<=10^{5},1<=m<=10^{9} ).

Each of the next n1n-1 lines contain two space separated integers uiu_{i} and viv_{i} ( 1<=ui,vi<=n1<=u_{i},v_{i}<=n ) representing the ii -th edge, which shows there is a path between the two vaults uiu_{i} and viv_{i} . It is guaranteed that the given graph is a tree.

The last line of input contains two integers kk and xx ( 1<=k<=m,1<=x<=101<=k<=m,1<=x<=10 ), the type of the highest security vault and the maximum possible number of vaults of highest security.

输出格式

Output a single integer, the number of ways of giving each vault a type following the conditions modulo 109+710^{9}+7 .

输入输出样例

  • 输入#1

    4 2
    1 2
    2 3
    1 4
    1 2
    

    输出#1

    1
    
  • 输入#2

    3 3
    1 2
    1 3
    2 1
    

    输出#2

    13
    
  • 输入#3

    3 1
    1 2
    1 3
    1 1
    

    输出#3

    0
    

说明/提示

In test case 11 , we cannot have any vault of the highest security as its type is 11 implying that its adjacent vaults would have to have a vault type less than 11 , which is not allowed. Thus, there is only one possible combination, in which all the vaults have type 22 .

首页