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

xxxqqq

  • 博客园
  • 联系
  • 订阅
  • 管理

View Post

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.

和之前的BackPackIV解法雷同

 

 1 public class Solution {
 2     public int coinChange(int[] coins, int amount) {
 3         if(amount<=0) return 0;
 4         
 5         int[] t = new int[amount+1];
 6         t[0] =0;
 7         for(int i=1;i<=amount;i++){
 8             t[i] = Integer.MAX_VALUE;
 9         }
10         for(int i=1;i<=amount;i++){
11             for(int j=0;j<coins.length;j++){
12                 if(coins[j]<=i){
13                     int pre = t[i-coins[j]];
14                     if(pre!=Integer.MAX_VALUE)
15                         t[i] = Math.min(t[i], pre+1);
16                 }
17             }
18         }
19         return t[amount]==Integer.MAX_VALUE?-1:t[amount];
20     }
21 }

 

posted on 2017-05-10 15:09  xxxqqq  阅读(218)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3