题解 | #兑换零钱(一)#
兑换零钱(一)
https://www.nowcoder.com/practice/3911a20b3f8743058214ceaa099eeb45
完全背包
- 体积为aim,每个背包的价值都为1
- 使用一位数组优化
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 最少货币数 * @param arr int整型一维数组 the array * @param aim int整型 the target * @return int整型 */ public int minMoney (int[] arr, int aim) { // write code here int[] f = new int[aim + 1]; Arrays.fill(f, aim + 1); f[0] = 0; for (int v: arr) { for (int j = v; j <= aim; j ++ ) { f[j] = Math.min(f[j], f[j - v] + 1); } } return f[aim] > aim ? -1 : f[aim]; } }