Friday, October 13, 2017

322. Coin Change

You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return -1.
Example 1:
coins = [1, 2, 5], amount = 11
return 3 (11 = 5 + 5 + 1)
Example 2:
coins = [2], amount = 3
return -1.
Note:
You may assume that you have an infinite number of each kind of coin.

Solution:
Dynamic programming:
For a given amount of money, and a coin array, the fewest coin change should be:
f(n)= Math.min( f(n-coins[0])+1, f(n-coins[1])+1...f(n-coins[j])+1)
if   f(n-coins[0])--> ff(n-coins[j]) are all equal to -1, then f(n) should be -1 as well. it means we can't split the money using giving coins.

 public int coinChange(int[] coins, int amount) {  
     int[] dp=new int[amount+1];  
     for(int i=1;i<amount+1;i++){  
       int minChange=i+1;  
       for(int j=0;j<coins.length;j++){  
         if(i-coins[j]>=0 && dp[i-coins[j]]!=-1) minChange=Math.min(dp[i-coins[j]]+1,minChange);  
       }  
       dp[i]= minChange==i+1? -1:minChange;  
     }  
     return dp[amount];  
   }  

No comments:

Post a Comment