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

uva 674 - Coin Change

时间:2014-11-05 21:38:51      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   color   ar   os   for   

#include<iostream>
#include<map>
#include<string>
#include<cstring>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
int dp[8000];
int coin[5]={1,5,10,25,50};
int main()
{
	int i,j,x;
	dp[0]=1;
		for(i=0;i<5;i++)
			for(j=0;j<7500;j++)
				dp[j+coin[i]]+=dp[j];
	while(cin>>x)
		cout<<dp[x]<<endl;
	return 0;
}
UVA - 674
Time Limit:3000MS   Memory Limit:Unknown   64bit IO Format:%lld & %llu

Status

Description

bubuko.com,布布扣


  Coin Change 

Suppose there are 5 types of coins: 50-cent, 25-cent, 10-cent, 5-cent, and 1-cent. We want to make changes with these coins for a given amount of money.


For example, if we have 11 cents, then we can make changes with one 10-cent coin and one 1-cent coin, two 5-cent coins and one 1-cent coin, one 5-cent coin and six 1-cent coins, or eleven 1-cent coins. So there are four ways of making changes for 11 cents with the above coins. Note that we count that there is one way of making change for zero cent.


Write a program to find the total number of different ways of making changes for any amount of money in cents. Your program should be able to handle up to 7489 cents.

Input 

The input file contains any number of lines, each one consisting of a number for the amount of money in cents.

Output 

For each input line, output a line containing the number of different ways of making changes with the above 5 types of coins.

Sample Input 

11
26

Sample Output 

4
13



Miguel Revilla
2000-08-14

Source

Root :: Competitive Programming: Increasing the Lower Bound of Programming Contests (Steven & Felix Halim) :: Chapter 3. Problem Solving Paradigms :: Dynamic Programming :: Coin Change - Classical
Root :: AOAPC I: Beginning Algorithm Contests (Rujia Liu) :: Volume 5. Dynamic Programming
Root :: Competitive Programming 2: This increases the lower bound of Programming Contests. Again (Steven & Felix Halim) :: Problem Solving Paradigms :: Dynamic Programming :: Coin Change (CC)

Root :: Competitive Programming 3: The New Lower Bound of Programming Contests (Steven & Felix Halim) :: Problem Solving Paradigms :: Dynamic Programming :: Coin Change (CC)

Status

uva 674 - Coin Change

标签:des   style   blog   http   io   color   ar   os   for   

原文地址:http://blog.csdn.net/stl112514/article/details/40829043

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