This is the source of the problem at uva.onlinejudge.org
The problem basically says:
Given N amount of money which has to be given!! we need to find out how much minimum coins we can give and the total value of those coins such that the extra amount given is minimal using n given denominations!
For example:
1400 -> N
3 -> no of denominations
500
1000
2000
Output: 1500 2
My question is:
What are the overlapping subproblems here?
I mean:
Are there any overlapping subproblems?
Because I couldn't find any...