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]; } }
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 大模型 Token 究竟是啥:图解大模型Token
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 感觉程序员要被 AI 淘汰了?学什么才有机会?
· Dify开发必备:分享8个官方文档不曾解释的关键技巧
· 活动中台系统慢 SQL 治理实践
· “你觉得客户需要”是杀死TA的最后一根稻草 | IPD集成产品开发
· BotSharp + MCP 三步实现智能体开发