Solution: Money Change Again

Solution for the Money Change Problem again.

We'll cover the following...

Solution

An optimal way to change 2626 requires seven coins. Let’s consider an arbitrary subset of an optimal solution, e.g., four coins within a rectangle shown below sum up to 1515.

Stop and think: Can we change 1515 cents with three coins?

No, we can’t. If there was a way to change 1515 with three coins, we would replace the highlighted four coins and get a change of 2626 with six coins (rather than seven). This example reveals an important property that many problems solved by the dynamic programming technique share:

Remember: A solution to a problem contains solutions to all its smaller subproblems.

This property allows us to find a solution for a problem by solving smaller subproblems first.

Let change(money)change(money) be the minimum number of coins of denominations 11, 33, and 44 needed to change moneymoney and (c1,...,ck)(c_1,...,c_k) be an optimal change for moneymoney so that

c1++ck=money.c_1+\ldots+c_k =money.

Then,

c1++ck1=moneyck.c_1+\ldots+c_k−1 =money−c_k. ...