ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
You are given infinite coins of N denominations v1, v2, v3,.....,vn and a sum S. The coin change problem is to find the minimum number of coins required to get the sum S. What is the time complexity of a dynamic programming implementation used to solve the coin change problem?
Correct Answer: D — O(S*N)
The time complexity is O(S*N).