码迷,mamicode.com
首页 > 其他好文 > 详细

322. 零钱兑换(0-1背包问题)

时间:2021-06-28 18:57:50      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:for   hang   tco   ems   int   链接   http   div   组合   

给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。

你可以认为每种硬币的数量是无限的。

 

示例 1:

输入:coins = [1, 2, 5], amount = 11
输出:3
解释:11 = 5 + 5 + 1
示例 2:

输入:coins = [2], amount = 3
输出:-1
示例 3:

输入:coins = [1], amount = 0
输出:0
示例 4:

输入:coins = [1], amount = 1
输出:1
示例 5:

输入:coins = [1], amount = 2
输出:2
 

提示:

1 <= coins.length <= 12
1 <= coins[i] <= 231 - 1
0 <= amount <= 104

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/coin-change
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

class Solution {
public:
    int coinChange(vector<int>& coins, int amount) {
        int coinsNums = coins.size();
        vector<int> res(amount+1,amount+1);
        res[0] = 0;
        for(int i = 1; i <= amount; ++i)
        {
            for(int j = 0; j < coinsNums; ++j)
            {
                if(i - coins[j] >= 0)
                {
                    res[i] = min(res[i], res[i - coins[j]]+1);
                }
            }
            
        }
        return res[amount]== (amount+1)? -1:res[amount];
    }
};

  

322. 零钱兑换(0-1背包问题)

标签:for   hang   tco   ems   int   链接   http   div   组合   

原文地址:https://www.cnblogs.com/qiaozhoulin/p/14938669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!