zoukankan      html  css  js  c++  java
  • code forces431C_dp_注意结果要多加两个modd保证输出是正数

    C. k-Tree
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    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.

    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).

    Input

    A single line contains three space-separated integers: nk and d (1 ≤ n, k ≤ 100; 1 ≤ d ≤ k).

    Output

    Print a single integer — the answer to the problem modulo 1000000007 (109 + 7).

    Examples
    input
    Copy
    3 3 2
    output
    Copy
    3
    input
    Copy
    3 3 3
    output
    Copy
    1
    input
    Copy
    4 3 2
    output
    Copy
    6
    input
    Copy
    4 5 2
    output
    Copy
    7
    #include <iostream>
    #include<bits/stdc++.h>
    using namespace std;
    const int modd=1e9+7;
    int main()
    {
        int n,k,d;
        cin>>n>>k>>d;
        long long dp[2][105];
        memset(dp,0,sizeof(dp));
    
            dp[0][0]=1;
            dp[1][0]=1;
        for(int i=1;i<=n;i++)
        {
           for(int j=1;j<=k;j++)
           {
               if(i<j)break;
               dp[0][i]=(dp[0][i]+dp[0][i-j])%modd;
           }
           for(int j=1;j<=d-1;j++)
           {
               if(i<j)break;
               dp[1][i]=(dp[1][i]+dp[1][i-j])%modd;
           }
        }
        cout<<((dp[0][n]-dp[1][n])%modd+modd)%modd;//这里加了两个odd是因为要保证结果为正数
        return 0;
    }
    

      

  • 相关阅读:
    cocos2d 中判断CGPoint或者CGSize是否相等
    object-c cocos2d-x 写程序时注意调试的技巧
    object-c [self class] 和 [self _cmd]
    object-c 协议和委托
    ios cocos2d TexturePacker生成文件后的使用方法
    object-c 要理解协议的几个重要概念
    Linux Mint 没有 language support 语言支持解决方案
    cocos2d ARCH_OPTIMAL_PARTICLE_SYSTEM这个未定义的问题
    CCSpriteBatchNode的优化性能
    Codeforces Round #190 DIV.2 A. Ciel and Dancing
  • 原文地址:https://www.cnblogs.com/passion-sky/p/9139171.html
Copyright © 2011-2022 走看看