All problems (regardless of currency) with making change from a given amount of currency into a specific number of coins and bills of varying denominations.

learn more… | top users | synonyms

1
vote
2answers
168 views

Java recursive coin change attempt [duplicate]

I'm trying the java coin change problem to enumerate all possible sets of change to be given for n. My logic follows as such: while n >= denom m { array[]+= denom m n-= denom m } ...
1
vote
1answer
48 views

what is a good technique to output a solution using dynamic programming?

This question is specifically addressed towards the coin change problem. I know the algorithm to find the optimal number of coins used to find change for any amount, and I also understand it but what ...
0
votes
1answer
141 views

Coin Change Bottom Up Dynamic Programming

http://uva.onlinejudge.org/external/6/674.html I'm trying to solve that problem. Note, though, that it's not the minimum coin change problem, it asks me for the different number of ways to make N ...
1
vote
2answers
223 views

StackOverflowError for coin change in Scala?

I'm writing a recursive function for the Coin (change) problem in Scala. My implementation breaks with StackOverflowError and I can't figure out why it happens. Exception in thread "main" ...
0
votes
1answer
179 views

Coin Change C++

I've tried to solve a coin change problem in such a way that it'll compute the minimum numbers of coins that can be used. I've used the algorithm post on http://www.algorithmist.com. Here's the ...
0
votes
2answers
91 views

Trouble printing out denominations used in Minimum Change algorithm

So I wrote a recursive algorithm for the problem of figuring out the least number of 'coins' of a particular set of denominations possible to arrive at a given sum. The algorithm seems to work, but ...
1
vote
3answers
170 views

Minimize the number of coins that changes hands [closed]

You have a set of coins 5¢, 10¢, 20¢, 50¢, 1$, 2$ and a limited number of each denomination. When you pay for some amount there are two possibilities: you pay the correct amount or you pay larger than ...
1
vote
3answers
266 views

Count the number of ways to make changes

I have a set of coins 1,2, 4, 10, 20, 40, 100, 200, 400, 1000, 2000 cents. I want to find out how many ways to pays for a certain amount (<= 6000). My current solution in c++ is using dynamic ...
0
votes
1answer
540 views

Coin change algorithm and pseudocode: Need clarification

I'm trying to understand the coin change problem solution, but am having some difficulty. At the Algorithmist, there is a pseudocode solution for the dynamic programming solution, shown below: n = ...
0
votes
1answer
238 views

Variation on coin-change

So the typical coin-change problem asks you to figure out whether or not you can make change for a value v using unlimited coins of denomination x1, x2, ... , xn, but I was wondering how you might go ...
1
vote
2answers
940 views

Coin Change (Dynamic Programming)

We usually the following recurrence relation for the coin change problem: (P is the total money for which we need change and di is the coin available) But cant we make it like this: (V is the given ...
1
vote
1answer
154 views

Printing coin patterns [duplicate]

Possible Duplicate: Making change recursively: How do I modify my algorithm to print all combinations? In coin pattern counting problem(Given a value N and a fixed set of coins,we have to ...
0
votes
2answers
272 views

If I use dynamic programming to solve coin-change, what will the matrix be for memoization?

I'm confused as to what the matrix should look like for the dynamic programming technique of the coin problem. Say I have the denominations of 1c,5c,10c and 25c and i call the make-change(10). i.e. I ...
1
vote
2answers
2k views

Recursive change-making algorithm

Given a target amount and a list of coin denominations, my code is supposed to find the fewest coins needed to reach the target amount. Examples: C(48, [1, 5, 10, 25, 50]) = 6 we can make 48 from ...
1
vote
2answers
873 views

Calculating the dollars right in the Money change program - C++ [closed]

Please take a look at the below code #include <QtCore/QCoreApplication> #include <iostream> int main(int argc, char *argv[]) { using namespace std; double purchaseAmount; ...
1
vote
1answer
704 views

Calculating it wrong in a C++ coin change program [closed]

So, I am trying to build this program, where I am suppose to take an input from a user which is a total amount and an amount which is the paid amount. Now, the balance should be broken down into $10, ...
0
votes
3answers
699 views

DP - Counting coin change

The problem requires to count number of coin changes for a particular cost. For example, if I have coin values of 50, 20, 10, 5, 1, I can form costs of: 5 => (5), (11111), which are 2 ways. 10 => ...
-1
votes
1answer
146 views

Coin change with different upper bounds on different coins?

Sample Input: 20 10 2 5 2 Sample Output: 2 Explanation: An amount of 20 could be made in 2 ways: 10*2 10*1 + 5*2 I want to find out the number of ways a particular amount can be made with given ...
1
vote
1answer
157 views

Which is a good algorithm for solving this algorithmic puzzle?

I am given an amount say $50. I am given some denominations say $1 ,$2 ,$5 etc. and the number of these denominations eg 1 ,5,6 that means 1 coin/note of $1 ,5 coins/notes of $2 and 6 coins/notes of ...
6
votes
1answer
286 views

coin-change with a twist

I am trying to solve a classic dynamic programming coin-change problem with a twist. This is a homework question, I am not looking for full solutions, just for a few pointers to see what I am doing ...
3
votes
3answers
153 views

Python get number from group of numbers

Sorry for the title and question but I don't know how it is called (and how to google) if I want to find out with how many times I can build a number from a group of numbers: possible_numbers = 1, 2, ...
0
votes
2answers
703 views

What are the base cases for Coin Change using Recursion?

I am basically trying to solve the coin change problem through recursion and here is what i have so far -: #include<iostream> #include<conio.h> using namespace std; int ...
1
vote
3answers
151 views

Rounding Error?

Hi I'm having an issue while creating a change calculator for a school assignment. It essentially is to calculate the lowest amount of change needed for a certain amount of money. Ex. $5.36: 2 ...
1
vote
2answers
985 views

dynamic programming: coin change

I have as an input: the number of testcases an amount of money As output I need: The number different coins we have and the value of each coin. The program should determine whether there is a ...
5
votes
4answers
768 views

Finding shortest combinations in array/sequence that equals sum

I'm totally stuck and have no idea how to go about solving this. Let's say I've an array arr = [1, 4, 5, 10] and a number n = 8 I need shortest sequence from within arr which equals n. So for ...
0
votes
2answers
1k views

Recursively find all coin combinations that produces a specified amount

My apologies in advance. I'm aware that this question has been asked before with answers that have not produced the results I want/need. I am making an attempt to write a function that does the ...
0
votes
1answer
492 views

Min-Coin change - Best solution for a limited set

I was reading about the min-coin change problem some time ago and I want to implement it for an hypothetical automatic machine. However, an automatic machine only has a limited access to coins and it ...
1
vote
1answer
415 views

Find coins which sum to target amount with a restricted set

Given a sum amount 1.15 Rs. (1 Rs. = 100 Paise), so total 115 paise and given a list of 8 coins with denominations as {1, 2, 5, 10, 20, 25, 50, 100} paise. Find 6 coins which sum to 1.15 Rs. The ...
1
vote
2answers
185 views

visual c++ coin change system for dispensing machines

recently i've been given an assignment to work on a new project in c++...and i've been doing some thinking for some days and nights on how to approach it....unfortunately the thinking hasn't worked ...
0
votes
4answers
524 views

I'm coding a brute-force algorithm on change making and I'm a little stuck

I need to write a program that uses brute-force method to find out how to make change the most efficiently. I'm a little confused and I'm curious if I'm on the right track. I'm writing it in C. It ...
4
votes
3answers
2k views

Dynamic Programming - making change

I'm having trouble figuring out my last section of code for a Dynamic Coin Changing Problem. I have included the code below. I can't figure out the last else. Should I just use the greedy algorithm ...
-4
votes
1answer
1k views

Algorithm for making change from coins [closed]

I recently came across this problem: Consider a country who has coins with denominations of {d1, d2, dk} units (you may assume that d1 is 1 unit). Give an efficient algorithm to determine the ...
0
votes
1answer
508 views

Coin change algorithm always returning one

/** * * @param d * currency divisions * @param p * target * @return number of coins */ public static int change(int[] d, int p) { int[] tempArray = new int[p*2]; // ...
0
votes
3answers
824 views

Beginning Dynamic Programming - Greedy coin change help

I am currently working through a book on algorithm design and came across a question whereby you must implement a greedy algorithm with dynamic programming to solve the coin change problem. I was ...
1
vote
1answer
64 views

How to use SQL to implement logic similar to making change?

The table Item has a field NUM_UNITS. id num_units -- --------- 1 2 2 4 3 1 4 7 For the above rowset, sum(num_units) = (2 + 4 + 1 + 7) = 14. I would like to write ...
-1
votes
2answers
675 views

Project Euler #31

Problem Description: In England the currency is made up of pound, £, and pence, p, and there are eight coins in general circulation: 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p). It ...
0
votes
1answer
185 views

Interfacing to bill/coin acceptors and printers

I have been approached regarding building a touch screen app for a client, but as it will be for use on kiosk machine it needs to interface with a bill/coin acceptor and a printer. What are the ...
5
votes
3answers
2k views

How to tell if greedy algorithm suffices for the minimum coin change problem?

The minimum coin change problem is an NP-complete problem but for certain sets of coins the greedy algorithm (choose largest denominations first) works. Given a set of integers denoting coin-values, ...
5
votes
11answers
3k views

Algorithm to determine coin combinations

I was recently faced with a prompt for a programming algorithm that I had no idea what to do for. I've never really written an algorithm before, so I'm kind of a newb at this. The problem said to ...
1
vote
3answers
923 views

Modifying the Coin Change problem to keep track of what coin is used (not minimum number)

I wrote a simple coin change algorithm that currently finds the minimum number of coins needed to match the amount required to buy something. I'm trying to modify it so that it keeps track of the ...
0
votes
3answers
725 views

I need to write a dispense change program.I completed the code,but it has some problem.Please help me to debug the code

There is a question in "Problem Solving and Program Design in C" book.I wrote the code, but loop isn't terminating. #include <stdio.h> #include <math.h> void change(double coin_change, ...
0
votes
1answer
1k views

Coin change problem C++

I am having a problem with writing a dynamic algorithm to solve coin change problem what I got is this: arr[value] - a global array filled with 0, lenght of the value I want to solve; a[n] - ...
0
votes
2answers
1k views

Coin change algorithm

would just like to double check this code will not have any errors, mainly to do with the modulus operator I'm unsure about. The question is: Problem: Write an ACL algorithm that, given a cost of an ...
0
votes
5answers
671 views

Algorithm for the least amount of change

Yes I know there has been similar posts to this however after looking through them all I'm still stuck as I'm very new to programming and none of the answers given were specific enough to my problem ...
1
vote
1answer
172 views

Make-change: Beginner Trouble

I'm trying to create "make-change" that will return a ls of coins whose sum = the input, and it needs to contain the least number of coins possible. Ex: (make-change 99) => (quarter quarter quarter ...
3
votes
1answer
620 views

Maximum Coin Partition

Since standing at the point of sale in the supermarket yesterday, once more trying to heuristically find an optimal partition of my coins while trying to ignore the impatient and nervous queue behind ...
0
votes
2answers
753 views

how do you calculate the minimum-coin change for transaction?

Hey everyone. I have a question. I am working on Visual Basic Express and I am supposed to calculate the change from a transaction. Now what code would I use? I have it partly working but its ...
1
vote
2answers
2k views

Coin change algorithm, decision problem, limited number of coins

I have written a program for generating subset sum which might be used in this problem which states: Suppose, you have 3 $1-coins, 2 $2-coins, 3 $5-coins, 1 $10-coin, there are 4 ways to ...
1
vote
0answers
524 views

Dynamic programming alg. coin change problem [duplicate]

Possible Duplicate: Coin change problem with infinite number of coins of each denomination Help me figure out the following problem: input: unlimited supply of coins: x1, x2, x3,....xn ...
1
vote
5answers
859 views

Coin Change, just can't get it right

Hello i'm trying to create an algorythm that finds out how many ways i can get change back. But i just can't get the implemtation right, i keep getting 4 where i should get 6 and i just can't see why. ...

1 2