码迷,mamicode.com
首页 > 其他好文 > 详细

51 nod 1101 换零钱

时间:2018-05-11 20:26:12      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:span   include   换零钱   ide   nod   efi   none   str   ace   

技术分享图片
 1 #include <iostream>
 2 using namespace std;
 3 #define mod 1000000007
 4 int dp[100005];
 5 
 6 int main()
 7 {
 8     int a[]={1,2,5,10,20,50,100,200,500,1000,2000,5000,10000};
 9     int n;
10     cin>>n;
11     dp[0] = 1;
12     for (int i=0;i<13;i++)
13     {
14         for (int j=a[i];j<=n;j++)
15             dp[j] = (dp[j]+dp[j-a[i]])%mod;
16     }
17     cout<<dp[n]<<endl;
18 }
View Code

 

51 nod 1101 换零钱

标签:span   include   换零钱   ide   nod   efi   none   str   ace   

原文地址:https://www.cnblogs.com/fjqfjq/p/9025689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!