hello-algo/codes/swift/chapter_dynamic_programming/coin_change_ii.swift
2023-08-27 00:50:18 +08:00

67 lines
1.9 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* File: coin_change_ii.swift
* Created Time: 2023-07-16
* Author: nuomi1 (nuomi1@qq.com)
*/
/* II */
func coinChangeIIDP(coins: [Int], amt: Int) -> Int {
let n = coins.count
// dp
var dp = Array(repeating: Array(repeating: 0, count: amt + 1), count: n + 1)
//
for i in stride(from: 0, through: n, by: 1) {
dp[i][0] = 1
}
//
for i in stride(from: 1, through: n, by: 1) {
for a in stride(from: 1, through: amt, by: 1) {
if coins[i - 1] > a {
// i
dp[i][a] = dp[i - 1][a]
} else {
// i
dp[i][a] = dp[i - 1][a] + dp[i][a - coins[i - 1]]
}
}
}
return dp[n][amt]
}
/* II */
func coinChangeIIDPComp(coins: [Int], amt: Int) -> Int {
let n = coins.count
// dp
var dp = Array(repeating: 0, count: amt + 1)
dp[0] = 1
//
for i in stride(from: 1, through: n, by: 1) {
for a in stride(from: 1, through: amt, by: 1) {
if coins[i - 1] > a {
// i
dp[a] = dp[a]
} else {
// i
dp[a] = dp[a] + dp[a - coins[i - 1]]
}
}
}
return dp[amt]
}
@main
enum CoinChangeII {
/* Driver Code */
static func main() {
let coins = [1, 2, 5]
let amt = 5
//
var res = coinChangeIIDP(coins: coins, amt: amt)
print("凑出目标金额的硬币组合数量为 \(res)")
//
res = coinChangeIIDPComp(coins: coins, amt: amt)
print("凑出目标金额的硬币组合数量为 \(res)")
}
}