V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
hakunamatata11
V2EX  ›  推广

[leetcode/lintcode 题解] Facebook 面试题:爱吃香蕉的珂珂

  •  
  •   hakunamatata11 · 2020-07-01 19:38:39 +08:00 · 686 次点击
    这是一个创建于 1396 天前的主题,其中的信息可能已经有所发展或是发生改变。

    珂珂喜欢吃香蕉。这里有 N 堆香蕉,第 i 堆中有 piles[i] 根香蕉。警卫已经离开了,将在 H 小时后回来。

    珂珂可以决定她吃香蕉的速度 K (单位:根 /小时)。每个小时,她将会选择一堆香蕉,从中吃掉 K 根。如果这堆香蕉少于 K 根,她将吃掉这堆的所有香蕉,然后这一小时内不会再吃更多的香蕉。

    珂珂喜欢慢慢吃,但仍然想在警卫回来前吃掉所有的香蕉。

    返回她可以在 H 小时内吃掉所有香蕉的最小速度 K( K 为整数)。

    • 1 <= piles.length <= 10^4
    • piles.length <= H <= 10^9
    • 1 <= piles[i] <= 10^9

    在线评测地址: https://www.lintcode.com/problem/koko-eating-bananas/?utm_source=sc-v2ex-fks

    样例 1:

    输入: piles = [3,6,7,11], H = 8
    输出: 4
    解释:6->4*2,7->4*2,11->4*3,3->4*1
    

    样例 2:

    输入: piles = [30,11,23,4,20], H = 5
    输出: 30
    解释:4->30*1,11->30*1,20->30*1,23->30*1,30->30*1
    

    [题解]

    采用二分的解法

    public class Solution {
        /**
         * @param piles: an array
         * @param H: an integer
         * @return: the minimum integer K
         */
        public int minEatingSpeed(int[] piles, int H) {
            // Write your code here
            int l = 1, r = 1000000000;
            while (l < r) {
                int m = (l + r) / 2, total = 0;
                for (int p : piles) 
                    total += (p + m - 1) / m;
                if (total > H) 
                    l = m + 1; 
                else 
                    r = m;
            }
            return l;
        }
    

    更多语言代码参见:https://www.jiuzhang.com/solution/koko-eating-bananas/?utm_source=sc-v2ex-fks

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   904 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 22:10 · PVG 06:10 · LAX 15:10 · JFK 18:10
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.