zoukankan      html  css  js  c++  java
  • 51nod 1101 换零钱 完全背包的变型 动态规划

    题目:

    思路:

        for(int i = 0;i < 13; i++){
            for(int j = a[i];j <= n; j++){
                dp[j] = (dp[j] + dp[j-a[i]])%mod;
            }
        } 

    a[i]:第i种硬币的面额。

    dp[j]表示有前i种硬币,要求面额为j时,有多少种方案。

    dp[j] = (dp[j] + dp[j-a[i]])%mod;

    不装的情况+装的情况

    代码:

    #include <bitsstdc++.h>
    using namespace std;
     
    const int mod = 1e9+7;
    int a[13] = {1,2,5,10,20,50,100,200,500,1000,2000,5000,10000};
    int dp[100010];
    int main(){
        int n;
        cin >> n;
        dp[0] = 1;
        for(int i = 0;i < 13; i++){
            for(int j = a[i];j <= n; j++){
                dp[j] = (dp[j] + dp[j-a[i]])%mod;
            }
        } 
        cout << dp[n] << endl;
        return 0;
    } 
  • 相关阅读:
    python的Collections 模块
    python模块
    python类
    python异常
    python文件处理
    python函数
    python字符串
    python数据结构
    python循环
    下载Google Play外国区APP技巧
  • 原文地址:https://www.cnblogs.com/zhangjiuding/p/7648649.html
Copyright © 2011-2022 走看看