Solution: Money Change Again
Solution for the Money Change Problem again.
Solution
An optimal way to change 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 .
Stop and think: Can we change cents with three coins?
No, we can’t. If there was a way to change with three coins, we would replace the highlighted four coins and get a change of 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 be the minimum number of coins of denominations , , and needed to change and be an optimal change for so that
Then,
...