-->

Monday, October 8, 2018

Change Making Problem Using Greedy Algorithm - YouTube
src: i.ytimg.com

The change-making problem addresses the question of finding the minimum number of coins (of certain denominations) that add up to a given amount of money. It is a special case of the integer knapsack problem, and has applications wider than just currency.

It is also the most common variation of the coin change problem, a general case of partition in which, given the available denominations of an infinite set of coins, the objective is to find out the number of possible ways of making a change for a specific amount of money, without considering the order of the coins.

It is weakly NP-hard, but may be solved optimally in pseudo-polynomial time by dynamic programming.


Video Change-making problem



Mathematical definition

Coin values can be modeled by a set of n distinct positive integer values (whole numbers), arranged in increasing order as w1 = 1 through wn. The problem is: given an amount W, also a positive integer, to find a set of non-negative (positive or zero) integers {x1, x2, ..., xn}, with each xj representing how often the coin with value wj is used, which minimize the total number of coins f(W)

f ( W ) = ? j = 1 n x j {\displaystyle f(W)=\sum _{j=1}^{n}x_{j}}

subject to

? j = 1 n w j x j = W . {\displaystyle \sum _{j=1}^{n}w_{j}x_{j}=W.}

Maps Change-making problem



Non-currency examples

An application of change-making problem can be found in computing the ways one can make a nine dart finish in a game of darts.

Another application is computing the possible atomic (or isotopic) composition of a given mass/charge peak in mass spectrometry.


The Change-Making Problem - Exploring The Dynamic Programming ...
src: i.ytimg.com


Methods of solving

Simple dynamic programming

A classic dynamic programming strategy works upward by finding the combinations of all smaller values that would sum to the current threshold. Thus, at each threshold, all previous thresholds are potentially considered to work upward to the goal amount W. For this reason, this dynamic programming approach may require a number of steps that is at least quadratic in the goal amount W.

Optimal substructure

Since the problem exhibits optimal substructure, dynamic programming strategy can be applied to reach a solution as follows:

Firstly, given that S {\displaystyle S} is the optimal solution that contains exactly n {\displaystyle n} coins, hence S ? = S - c {\displaystyle S'=S-c} . It may seem as if c ? S {\displaystyle c\in S} , is the optimal solution for the sub-problem that contains exactly n - c {\displaystyle n-c} coins.

However, S ? {\displaystyle S'} does not contain n - c {\displaystyle n-c} coins, and is not optimal, therefore the solution is known as X ? S ? {\displaystyle X\neq S'} , hence X {\displaystyle X} becomes the optimal solution, since it must contain fewer coins than S ? {\displaystyle S'} .

Finally, combining X {\displaystyle X} with c {\displaystyle c} achieves the optimal solution that contains exactly n {\displaystyle n} coins, while contradicting any assumptions that S {\displaystyle S} is the optimal solution for the original problem.

Implementation

The following is a dynamic programming implementation (with Python 3) which uses a matrix to keep track of the optimal solutions to sub-problems, and returns the minimum number of coins. A second matrix may be used to obtain the set of coins for the optimal solution.

Dynamic programming with the probabilistic convolution tree

The probabilistic convolution tree can also be used as a more efficient dynamic programming approach. The probabilistic convolution tree merges pairs of coins to produce all amounts which can be created by that pair of coins (with neither coin present, only the first coin present, only the second coin present, and both coins present), and then subsequently merging pairs of these merged outcomes in the same manner. This process is repeated until the final two collections of outcomes are merged into one, leading to a balanced binary tree with W log(W) such merge operations. Furthermore, by discretizing the coin values, each of these merge operations can be performed via convolution, which can often be performed more efficiently with the fast Fourier transform (FFT). In this manner, the probabilistic convolution tree may be used to achieve a solution in sub-quadratic number of steps: each convolution can be performed in n log(n), and the initial (more numerous) merge operations use a smaller n, while the later (less numerous) operations require n on the order of W.

The probabilistic convolution tree-based dynamic programming method also efficiently solves the probabilistic generalization of the change-making problem, where uncertainty or fuzziness in the goal amount W makes it a discrete distribution rather than a fixed quantity, where the value of each coin is likewise permitted to be fuzzy (for instance, when an exchange rate is considered), and where different coins may be used with particular frequencies.

Greedy method

For the so-called canonical coin systems, like those used in the US and many other countries, a greedy algorithm of picking the largest denomination of coin which is not greater than the remaining amount to be made will produce the optimal result. This is not the case for arbitrary coin systems, though: if the coin denominations were 1, 3 and 4, then to make 6, the greedy algorithm would choose three coins (4,1,1) whereas the optimal solution is two coins (3,3).

However, there is a modified version of greedy algorithm to solve this question. In our case, we have

W = x 1 + 3 x 2 + 4 x 3 {\displaystyle W=x_{1}+3x_{2}+4x_{3}}

where 0 <= x 1 <= 2 {\displaystyle 0\leq x_{1}\leq 2} and 0 <= x 2 <= 2 {\displaystyle 0\leq x_{2}\leq 2} since 3 w 1 = w 2 {\displaystyle 3w_{1}=w_{2}} and 3 w 2 = w 1 + 2 w 3 {\displaystyle 3w_{2}=w_{1}+2w_{3}} .

Now let y = x 1 + 3 x 2 {\displaystyle y=x_{1}+3x_{2}} . We can write

W = y + 4 x 3 {\displaystyle W=y+4x_{3}}

where 0 <= y <= 8 {\displaystyle 0\leq y\leq 8} .

For example, given W = 2018 {\displaystyle W=2018} , we have 2018 = 6 + 4 × 503 {\displaystyle 2018=6+4\times 503} . Hence f ( 2018 ) = f ( 6 ) + 503 = 505 {\displaystyle f(2018)=f(6)+503=505} .

Therefore

f ( W ) = [ W / 4 ] - 1 + f ( 4 + W % 4 ) {\displaystyle f(W)=[W/4]-1+f(4+W\%4)}

where [ W / 4 ] {\displaystyle [W/4]} denotes the largest integer less than or equal to W / 4 {\displaystyle W/4} and W % 4 {\displaystyle W\%4} denotes the remainder of W {\displaystyle W} divided by 4.


Fundamentals of Algorithms MCS - 2 Lecture # 7 - ppt video online ...
src: slideplayer.com


Related problems

The "optimal denomination problem" is a problem for people who design entirely new currencies. It asks what denominations should be chosen for the coins in order to minimize the average cost of making change, that is, the average number of coins needed to make change? The version of this problem assumed that the people making change will use the minimum number of coins (from the denominations available). One variation of this problem assumes that the people making change will use the "greedy algorithm" for making change, even when that requires more than the minimum number of coins. Most current currencies use a 1-2-5 series, but some other set of denominations would require fewer denominations of coins or a smaller average number of coins to make change or both.


Coin Change Tutorial - YouTube
src: i.ytimg.com


See also

  • List of knapsack problems
  • Coin problem
  • The coin collector's problem

Dynamic programming coin change - dynamic programming coin change ...
src: i.ytimg.com


References


Greedy Technique. - ppt download
src: slideplayer.com


Further reading

  • X. Cai (2009). "Canonical Coin Systems for Change-Making Problems". Proceedings of the Ninth International Conference on Hybrid Intelligent Systems: 499-504. arXiv:0809.0400. doi:10.1109/HIS.2009.103.
  • M. Adamaszek, A. Niewiarowska (2010). "Combinatorics of the change-making problem". European Journal of Combinatorics. 31 (1): 47-63. arXiv:0801.0120. doi:10.1016/j.ejc.2009.05.002.
  • J.W.Wright (1975). "The Change-Making Problem". Journal of the Association for Computing Machinery. 22 (1): 125-128. doi:10.1145/321864.321874.

Source of article : Wikipedia