第四题 回溯 class Pdd4 { public int MinMax = Integer.MAX_VALUE; public void reset() { MinMax = Integer.MAX_VALUE; } public void helper(int[] frogs, int M, int K, int loc) { int T = frogs.length; if (M == 0) { int max = max(frogs); MinMax = Math.min(MinMax, max); return; } if (loc < 0 || loc >= T) { return; } int tmp = frogs[loc]; frogs[loc] = frogs[loc] <= K ? 0 : frogs[loc] - K; helper(frogs, M-1, K, loc+1); helper(frogs, M-1, K, loc-1); frogs[loc] = tmp; } public int max(int[] frogs, int head, int rear) { int ret = 0; for (int i=head; i <= rear; i++) { ret = Math.max(frogs[i], ret); } return ret; } public int max(int[] frogs) { int ret = 0; for (int i: frogs) { ret = Math.max(i, ret); } return ret; } }
1 2

相关推荐

Allen好Iverson:我看牛客都是20-30k的 这个3.9k爆出来有点,哈哈哈哈
点赞 评论 收藏
分享
出自剑来:找工作就是运气大于实力的事 我们组的应届生也是上周在牛客招聘被百度的捞了,一周速通下of
点赞 评论 收藏
分享
牛客网
牛客企业服务