Coin Changes LeetCode

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:

[1, 2, 5]
11
3

Example 2:

[2]
3

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

Accepted
384,527
Submissions
1,108,726

 

复制代码
class Solution {
    public int coinChange(int[] coins, int amount) {
        
        
        Arrays.sort(coins);
        
        int dp[] = new int[amount+1];
        
        //initial assign 
        
        for(int i = 1; i<=amount; i++){
            dp[i] =Integer.MAX_VALUE;
        }
        
        dp[0]=0;
        
        //dp[i] = min{ dp[i-coins[0]]+1, dp[i-coins[1]]+1, dp[i-coins[2]]+1, ... dp[i- coins[coins.length]]+1 }
        for(int i = 1; i<= amount; i++){
            
            for(int j = 0; j< coins.length; j++){
                
                if(i>=coins[j]&& dp[i-coins[j]]!=Integer.MAX_VALUE){
                    
                    dp[i] = Math.min(dp[i-coins[j]]+1,dp[i]);
                }
            }
        
        }
        
        if(dp[amount]==Integer.MAX_VALUE){
            dp[amount]=-1;
        }
        
        return dp[amount];
    }
}
复制代码

 

posted @   CodingYM  阅读(154)  评论(0编辑  收藏  举报
编辑推荐:
· 大模型 Token 究竟是啥:图解大模型Token
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
阅读排行:
· 感觉程序员要被 AI 淘汰了?学什么才有机会?
· Dify开发必备:分享8个官方文档不曾解释的关键技巧
· 活动中台系统慢 SQL 治理实践
· “你觉得客户需要”是杀死TA的最后一根稻草 | IPD集成产品开发
· BotSharp + MCP 三步实现智能体开发
点击右上角即可分享
微信分享提示