程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> HDU2069 Coin Change (DP)

HDU2069 Coin Change (DP)

編輯:關於C++

題目意思:

 

給你五種硬幣:1,5,10,25,50,現在給出一個n,求出用用這些組成價值n的種類數,例如n=11;

1、11個1

2、1個10,1個1

3、1個5,6個1

4、2個5,1個1

特別注意:使用硬幣數不能超過100,只要注意了這個就可以了。

 

AC代碼:

 

/**
  *@xiaoran
  *dp[i],最多100枚硬幣
  */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long
using namespace std;
const int a[5]={1,5,10,25,50};
LL dp[255][101];//dp[j][k]:用k個硬幣組成j值的個數
int main()
{
    int n;
    while(cin>>n){
        //cout<

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved