Virus Tree 2(树)

题目描述
You are given a tree with N vertices and N−1 edges. The vertices are numbered 1 to N, and the
i-th edge connects Vertex ai and bi.
You have coloring materials of K colors. For each vertex in the tree, you will choose one of the
K colors to paint it, so that the following condition is satisfied:
If the distance between two different vertices x and y is less than or equal to two, x and y have different colors.
How many ways are there to paint the tree? Find the count modulo 1 000 000 007.
What is tree?
A tree is a kind of graph. For detail, please see: Wikipedia “Tree (graph theory)”
What is distance?
The distance between two vertices x and y is the minimum number of edges one has to traverse to get from x to y.
Constraints
·1≤N,K≤105
·1≤ai,bi≤N
·The given graph is a tree.

输入
Input is given from Standard Input in the following format:

N K
a1 b1
a2 b2
.
.
.
aN−1 bN−1

输出
Print the number of ways to paint the tree, modulo 1 000 000 007.

样例输入
【样例1】
4 3
1 2
2 3
3 4
【样例2】
5 4
1 2
1 3
1 4
4 5
【样例3】
16 22
12 1
3 1
4 16
7 12
6 2
2 15
5 16
14 16
10 11
3 10
3 13
8 6
16 8
9 12
4 3

样例输出
【样例1】
6
【样例2】
48
【样例3】
271414432

提示
在这里插入图片描述
There are six ways to paint the tree.

思路
对每一个节点,若该节点为初始节点,则有k种选择方式,若该节点为初始节点的下一个节点,则有C(k-1,deg[i])种选择方式,其他节点则有C(k-2,deg[i])种选择方式,计算总选择方式即可

代码实现

#pragma GCC optimize(3,"Ofast","inline")
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N=1e5+5;
const int M=30;
const int INF=0x3f3f3f;
const ull sed=31;
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值