代码拉取完成,页面将自动刷新
class GetBestGoldMining {
/**
*
* @param w 工人总数
* @param p 每个金矿需要工人
* @param g 每个金矿的总收益
* @return 得到金子的最优解
*/
public static int getBestGoldMining(int w, int[] p, int[] g) {
int[] results = new int[w + 1];
for (int i = 1; i <= g.length; i++) {
for (int j = w; j >= 1; j--) {
if (j >= p[i - 1]) {
results[j] = Math.max(results[j], results[j - p[i - 1]] + g[i - 1]);
}
}
}
return results[w];
}
public static void main(String[] args) {
System.out.println("最优解为:"
+ getBestGoldMining(10, new int[] { 5, 5, 3, 4, 3 }, new int[] { 400, 500, 200, 300, 350 }) + "kg");
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。