forked from yijizhichang/LeetCodeInGo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path322.go
More file actions
41 lines (36 loc) · 815 Bytes
/
322.go
File metadata and controls
41 lines (36 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package problem
/*
给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。
示例 1:
输入: coins = [1, 2, 5], amount = 11
输出: 3
解释: 11 = 5 + 5 + 1
示例 2:
输入: coins = [2], amount = 3
输出: -1
说明:
你可以认为每种硬币的数量是无限的。
*/
func coinChange(coins []int, amount int) int {
dp := make([]int, amount+1)
for j := 1; j <= amount; j++ {
dp[j] = amount + 1
}
for i := 1; i <= amount; i++ {
for _, v := range coins {
if i >= v {
dp[i] = min(dp[i], dp[i-v]+1)
}
}
}
if dp[amount] > amount {
return -1
}
return dp[amount]
}
func min(i, j int) int {
if i < j {
return i
}
return j
}