LeetCode : 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:
Input: coins = [1, 2, 5], amount = 11
Output: 3
Explanation: 11 = 5 + 5 + 1
Example 2:
Input: coins = [2], amount = 3
Output: -1
Note:
You may assume that you have an infinite number of each kind of coin.
代码
动态规划
class Solution {
public int coinChange(int[] coins, int amount) {
int[] am = new int[amount+1];
Arrays.fill(am, -1);
am[0] = 0;
for(int i = 1; i<=amount; i++){
for(int c : coins){
if(i-c>=0 && am[i-c]!=-1){
if(am[i]==-1)
am[i] = am[i-c] + 1;
else
am[i] = Math.min(am[i], am[i-c] + 1);
}
}
}
return am[amount];
}
}
还没有评论,来说两句吧...