Chapter 6: 18 E (page 194)
Consider the following variation on the change-making problem (Exercise 6.17): you are given denominations , and you want to make change for a value , but you are allowed to use each denomination at most once. For instance, if the denominations are then you can make change for and for but not for 40(because you can’t use 20 twice).
Input: Positive integers; another integer .
Output: Can you make change for , using each denomination at most once?Show how to solve this problem in time .
Short Answer
The problem can also be solved by dynamic programming.