2024.3.24力扣每日一题——零钱兑换

题目来源

力扣每日一题;题序:322

我的题解

方法一 记忆化搜索

使用深度优先遍历可以得到答案,但是重复计算比较多,因此采用记忆化搜索——在深度优先搜索的过程中记录状态

时间复杂度:O(Sn)。S表示需要匹配的金额,n表示面额数
空间复杂度:O(S)

class Solution {
    int memo[];
    public int coinChange(int[] coins, int amount) {
        memo = new int[amount + 1];
		//初始为最小值
		Arrays.fill(memo, Integer.MIN_VALUE);
        memo[0] = 0;
        dfs(coins,amount);
        return memo[amount];
    }
    public int dfs(int[] coins, int amount){
        if (amount < 0) {
			return -1;
		}
		if (memo[amount] != Integer.MIN_VALUE) {
			return memo[amount];
		}
		int res = amount + 1;
		for (int coin : coins) {
			int temp = dfs(coins, amount - coin);
			if (temp == -1) {
				continue;
			}
			res = Math.min(res, temp + 1);
		}
        memo[amount]=res == amount + 1 ? -1 : res;
		return memo[amount];
    }
}
方法二 动态规划

记忆化搜索一般都可以直接转为动态规划实现。转移方程:dp[i]=Math.min(dp[i],dp[i-coin]+1)

时间复杂度:O(Sn)
空间复杂度:O(n)

class Solution {
    public int coinChange(int[] coins, int amount) {
        int[] dp = new int[amount + 1];
		Arrays.fill(dp, amount+1);
		dp[0] = 0;

        for(int i=1;i<dp.length;i++){
            for (int coin : coins) {
                if(i-coin<0)
                    continue;
                dp[i]=Math.min(dp[i],dp[i-coin]+1);
            }
        }
        return dp[amount]==amount+1?-1:dp[amount];
    }
}

有任何问题,欢迎评论区交流,欢迎评论区提供其它解题思路(代码),也可以点个赞支持一下作者哈😄~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

菜菜的小彭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值