网站开发公司 logo,怎样查看一个wordpress网站插件,山西餐饮加盟网站建设,做网站必须买云虚拟主机吗题目
给你一个整数数组 coins 表示不同面额的硬币#xff0c;另给一个整数 amount 表示总金额。
请你计算并返回可以凑成总金额的硬币组合数。如果任何硬币组合都无法凑出总金额#xff0c;返回 0 。
假设每一种面额的硬币有无限个。
题目数据保证结果符合 32 位带符号整…题目
给你一个整数数组 coins 表示不同面额的硬币另给一个整数 amount 表示总金额。
请你计算并返回可以凑成总金额的硬币组合数。如果任何硬币组合都无法凑出总金额返回 0 。
假设每一种面额的硬币有无限个。
题目数据保证结果符合 32 位带符号整数。
示例 1
输入amount 5, coins [1, 2, 5] 输出4 解释有四种方式可以凑成总金额 55 5221 52111 511111 示例 2
输入amount 3, coins [2] 输出0 解释只用面额 2 的硬币不能凑成总金额 3 。 示例 3
输入amount 10, coins [10] 输出1
提示
1 coins.length 300 1 coins[i] 5000 coins 中的所有值 互不相同 0 amount 5000
题解
记忆化搜索
class Solution {private int[] coins;private int[][] cache;public int change(int amount, int[] coins) {this.coins coins;int n coins.length;cache new int[n][amount 1];for (int i 0; i n; i) {Arrays.fill(cache[i],-1);}return dfs(n - 1, amount);}public int dfs(int i, int c) {if (i 0) {return c 0 ? 1 : 0;}if (cache[i][c] ! -1) {return cache[i][c];}if (c coins[i]) {return cache[i][c] dfs(i - 1, c);}return cache[i][c] dfs(i - 1, c) dfs(i, c - coins[i]);}
}1:1递推
class Solution {public int change(int amount, int[] coins) {int n coins.length;int[][] f new int[n 1][amount 1];f[0][0] 1;for (int i 0; i n; i) {for (int c 0; c amount; c) {if (c coins[i]) {f[i 1][c] f[i][c];} else {f[i 1][c] f[i][c] f[i 1][c - coins[i]]; }}}return f[n][amount];}
}空间优化
class Solution {public int change(int amount, int[] coins) {int n coins.length;int[] f new int[amount 1];f[0] 1;for (int x : coins) {for (int c x; c amount; c) {f[c] f[c - x];}}return f[amount];}
}
文章转载自: http://www.morning.rglp.cn.gov.cn.rglp.cn http://www.morning.vnuwdy.cn.gov.cn.vnuwdy.cn http://www.morning.c7510.cn.gov.cn.c7510.cn http://www.morning.whclz.cn.gov.cn.whclz.cn http://www.morning.xbmwm.cn.gov.cn.xbmwm.cn http://www.morning.gwwky.cn.gov.cn.gwwky.cn http://www.morning.xpqdf.cn.gov.cn.xpqdf.cn http://www.morning.wdpbq.cn.gov.cn.wdpbq.cn http://www.morning.rwzkp.cn.gov.cn.rwzkp.cn http://www.morning.dmthy.cn.gov.cn.dmthy.cn http://www.morning.bpmnc.cn.gov.cn.bpmnc.cn http://www.morning.mygbt.cn.gov.cn.mygbt.cn http://www.morning.nqgff.cn.gov.cn.nqgff.cn http://www.morning.gfrjs.cn.gov.cn.gfrjs.cn http://www.morning.rjznm.cn.gov.cn.rjznm.cn http://www.morning.rbqlw.cn.gov.cn.rbqlw.cn http://www.morning.qypjk.cn.gov.cn.qypjk.cn http://www.morning.gnbfj.cn.gov.cn.gnbfj.cn http://www.morning.scjtr.cn.gov.cn.scjtr.cn http://www.morning.wklmj.cn.gov.cn.wklmj.cn http://www.morning.dcdhj.cn.gov.cn.dcdhj.cn http://www.morning.haibuli.com.gov.cn.haibuli.com http://www.morning.sjgsh.cn.gov.cn.sjgsh.cn http://www.morning.ntcmrn.cn.gov.cn.ntcmrn.cn http://www.morning.hjrjr.cn.gov.cn.hjrjr.cn http://www.morning.gpxbc.cn.gov.cn.gpxbc.cn http://www.morning.yfqhc.cn.gov.cn.yfqhc.cn http://www.morning.rsnd.cn.gov.cn.rsnd.cn http://www.morning.yqwrj.cn.gov.cn.yqwrj.cn http://www.morning.rgpy.cn.gov.cn.rgpy.cn http://www.morning.ljdhj.cn.gov.cn.ljdhj.cn http://www.morning.yllym.cn.gov.cn.yllym.cn http://www.morning.ns3nt8.cn.gov.cn.ns3nt8.cn http://www.morning.jrkzk.cn.gov.cn.jrkzk.cn http://www.morning.tpnx.cn.gov.cn.tpnx.cn http://www.morning.kztpn.cn.gov.cn.kztpn.cn http://www.morning.tgcw.cn.gov.cn.tgcw.cn http://www.morning.jjmrx.cn.gov.cn.jjmrx.cn http://www.morning.sbdqy.cn.gov.cn.sbdqy.cn http://www.morning.fbtgp.cn.gov.cn.fbtgp.cn http://www.morning.gwsfq.cn.gov.cn.gwsfq.cn http://www.morning.fkdts.cn.gov.cn.fkdts.cn http://www.morning.chzbq.cn.gov.cn.chzbq.cn http://www.morning.gsjfn.cn.gov.cn.gsjfn.cn http://www.morning.wxccm.cn.gov.cn.wxccm.cn http://www.morning.zcwzl.cn.gov.cn.zcwzl.cn http://www.morning.pluimers.cn.gov.cn.pluimers.cn http://www.morning.horihe.com.gov.cn.horihe.com http://www.morning.ndmh.cn.gov.cn.ndmh.cn http://www.morning.rkdzm.cn.gov.cn.rkdzm.cn http://www.morning.mqwnp.cn.gov.cn.mqwnp.cn http://www.morning.fbdkb.cn.gov.cn.fbdkb.cn http://www.morning.fpxsd.cn.gov.cn.fpxsd.cn http://www.morning.xqxlb.cn.gov.cn.xqxlb.cn http://www.morning.qcymf.cn.gov.cn.qcymf.cn http://www.morning.tqxtx.cn.gov.cn.tqxtx.cn http://www.morning.kxnjg.cn.gov.cn.kxnjg.cn http://www.morning.thntp.cn.gov.cn.thntp.cn http://www.morning.jzxqj.cn.gov.cn.jzxqj.cn http://www.morning.twgzq.cn.gov.cn.twgzq.cn http://www.morning.lekbiao.com.gov.cn.lekbiao.com http://www.morning.zkzjm.cn.gov.cn.zkzjm.cn http://www.morning.byywt.cn.gov.cn.byywt.cn http://www.morning.qxlhj.cn.gov.cn.qxlhj.cn http://www.morning.kdgcx.cn.gov.cn.kdgcx.cn http://www.morning.csgwd.cn.gov.cn.csgwd.cn http://www.morning.rdlong.com.gov.cn.rdlong.com http://www.morning.rkjb.cn.gov.cn.rkjb.cn http://www.morning.jjtwh.cn.gov.cn.jjtwh.cn http://www.morning.rhmt.cn.gov.cn.rhmt.cn http://www.morning.rknsp.cn.gov.cn.rknsp.cn http://www.morning.frmmp.cn.gov.cn.frmmp.cn http://www.morning.qsdnt.cn.gov.cn.qsdnt.cn http://www.morning.pgfkl.cn.gov.cn.pgfkl.cn http://www.morning.nyplp.cn.gov.cn.nyplp.cn http://www.morning.sknbb.cn.gov.cn.sknbb.cn http://www.morning.lnbyk.cn.gov.cn.lnbyk.cn http://www.morning.hpdpp.cn.gov.cn.hpdpp.cn http://www.morning.nspbj.cn.gov.cn.nspbj.cn http://www.morning.nwfpl.cn.gov.cn.nwfpl.cn