树形结构+dp思维 Codeforces Round #247 (Div. 2) C题 k-Tree

k-Tree

Quite recently a creative student Lesha had a lecture on trees. After the lecture Lesha was inspired and came up with the tree of his own which he called a k-tree.

A k-tree is an infinite rooted tree where:

· each vertex has exactly k children;
· each edge has some weight;
· if we look at the edges that goes from some vertex to its children (exactly k edges), then their weights will equal 1, 2, 3, …, k.

The picture below shows a part of a 3-tree.
树形结构+dp思维 Codeforces Round #247 (Div. 2) C题 k-Tree_第1张图片
As soon as Dima, a good friend of Lesha, found out about the tree, he immediately wondered: “How many paths of total weight n (the sum of all weights of the edges in the path) are there, starting from the root of a k-tree and also containing at least one edge of weight at least d?”.

Help Dima find an answer to his question. As the number of ways can be rather large, print it modulo 1000000007 (109 + 7).


题目大意:说明了 k 树的定义,然后问你从 1(根结点)开始,往下走,权值和为 n 的路径条数,要求路径上至少有一条边权值大于等于d;

虽然是涉及到了树的结构,但是和树没有太大关系,可以设:

dp1[i]+=dp1[j] (j>=i-k&&j

dp2[i]+=dp2[j] (j>=i-d+1&&j

所以,dp1[n]-dp2[n] 就是答案要求的路径条数;

代码:

#include	
#define LL long long
#define pa pair
#define ls k<<1
#define rs k<<1|1
#define inf 0x3f3f3f3f
using namespace std;
const int N=200100;
const int M=2000100;
const LL mod=1e9+7;
//int head[N],cnt;
//struct Node{
//	int to,nex;
//}edge[N*2];
//void add(int p,int q){
//	edge[cnt].to=q,edge[cnt].nex=head[p],head[p]=cnt++;
//}
LL dp1[N],dp2[N];
int main(){
//	memset(head,-1,sizeof(head));
	int n,k,d;
	scanf("%d%d%d",&n,&k,&d);
	dp1[0]=dp2[0]=1;
	for(int i=1;i<=n;i++){
		for(int j=max(0,i-k);j<i;j++) (dp1[i]+=dp1[j])%=mod;
		for(int j=max(0,i-d+1);j<i;j++) (dp2[i]+=dp2[j])%=mod;
	}
	printf("%lld\n",(dp1[n]-dp2[n]+mod)%mod);
	return 0;
}

你可能感兴趣的:(#,树型dp,动态规划,树结构)