接外包,有相关需求的可以联系我:Telegram | Email

Coin Change | Dynamic Programming

该文章创建(更新)于03/16/2022,请注意文章的时效性!

文章目录[隐藏]

You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money.

Return 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.

You may assume that you have an infinite number of each kind of coin.

Solution

Dynamic Programming

  • Still hard for me to understand it ! just fuck it !

Code

  • submit code
class Solution:
    def coinChange(self, coins: List[int], amount: int) -> int:
        self.mem = [-666 for x in range(amount + 1)]
        return self.dp(coins,amount)

    def dp(self,coins,amount):
        if amount == 0:
            return 0

        if amount < 0:
            return  -1

        if self.mem[amount] != -666:
            return self.mem[amount]

        res = 10001
        for coin in coins:
            subSproblem = self.dp(coins,amount - coin)
            if subSproblem == -1:
                continue
            res = min(res,subSproblem + 1)

        self.mem[amount] = -1 if res == 10001 else res
        return self.mem[amount]
  • full code
class SolutionM:
    def coinChange(self, coins, amount):
        self.arry = [-3 for m in range(amount + 1)]
        return self.dp(coins,amount)

    def dp(self,coins,amount):
        if amount == 0:
            return 0

        if amount < 0:
            return  -1

        # create a bak notebook
        if self.arry[amount] != -3:
            return self.arry[amount]

        res = 10001
        for coin in coins:
            print(coin)
            subSproblem = self.dp(coins,amount - coin)
            if subSproblem == -1:
                continue
            res = min(res,subSproblem + 1)

        self.arry[amount] = -1 if res == 10001 else res

        return self.arry[amount]

S = SolutionM()
coins = [1,2,5]
amount = 1
ret = S.coinChange(coins,amount)

print('-----------------------')
print(ret)

要不赞赏一下?

微信
支付宝
PayPal
Bitcoin

版权声明 | Copyright

除非特别说明,本博客所有作品均采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可。转载请注明转自-
https://www.emperinter.info/2022/03/16/coin-change/


要不聊聊?

我相信你准备留下的内容是经过思考的!【勾选防爬虫,未勾选无法留言】

*

*



YouTube | B站

微信公众号

👉 NewsLetter ❤️ 邮箱订阅 👈

优惠码

阿里云国际版20美元
Vultr10美元
搬瓦工 | Bandwagon应该有折扣吧?
Just My SocksJMS9272283 【注意手动复制去跳转】
域名 | namesiloemperinter(1美元)
币安 币安