• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
neverlandly
博客园    首页    新随笔    联系   管理    订阅  订阅

Leetcode: 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.

DP:

 1 public class Solution {
 2     public int coinChange(int[] coins, int amount) {
 3         if (coins==null || coins.length==0 || amount<0) return -1;
 4         int[] res = new int[amount+1]; //res[i] is the fewest number of coins to make up amount i
 5         Arrays.fill(res, Integer.MAX_VALUE);
 6         res[0] = 0;
 7         for (int i=1; i<=amount; i++) {
 8             for (int j=0; j<coins.length; j++) {
 9                 if (i-coins[j] < 0) continue;
10                 if (res[i-coins[j]] == Integer.MAX_VALUE) continue;
11                 res[i] = Math.min(res[i], res[i-coins[j]]+1);
12             }
13         }
14         return res[amount]==Integer.MAX_VALUE? -1 : res[amount];
15     }
16 }

 

posted @ 2015-12-31 14:07  neverlandly  阅读(365)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3