A11253 | Helga Hufflepuff's Cup
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $n$ vaults where each vault has some type, denoted by a number between $1$ to $m$ . A tree is an undirected connected graph with no cycles.
The vaults with the highest security are of type $k$ , and all vaults of type $k$ have the highest security.
There can be at most $x$ 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 $k$ .
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 Wizarding bank is in the form of a tree with total $n$ vaults where each vault has some type, denoted by a number between $1$ to $m$ . A tree is an undirected connected graph with no cycles.
The vaults with the highest security are of type $k$ , and all vaults of type $k$ have the highest security.
There can be at most $x$ 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 $k$ .
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, $n$ and $m$ — the number of vaults and the number of different vault types possible. ( $1<=n<=10^{5},1<=m<=10^{9}$ ).
Each of the next $n-1$ lines contain two space separated integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ ) representing the $i$ -th edge, which shows there is a path between the two vaults $u_{i}$ and $v_{i}$ . It is guaranteed that the given graph is a tree.
The last line of input contains two integers $k$ and $x$ ( $1<=k<=m,1<=x<=10$ ), the type of the highest security vault and the maximum possible number of vaults of highest security.
Each of the next $n-1$ lines contain two space separated integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ ) representing the $i$ -th edge, which shows there is a path between the two vaults $u_{i}$ and $v_{i}$ . It is guaranteed that the given graph is a tree.
The last line of input contains two integers $k$ and $x$ ( $1<=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 $10^{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 $1$ , we cannot have any vault of the highest security as its type is $1$ implying that its adjacent vaults would have to have a vault type less than $1$ , which is not allowed. Thus, there is only one possible combination, in which all the vaults have type $2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted