返回介绍

solution / 0800-0899 / 0875.Koko Eating Bananas / README_EN

发布于 2024-06-17 01:03:33 字数 4283 浏览 0 评论 0 收藏 0

875. Koko Eating Bananas

中文文档

Description

Koko loves to eat bananas. There are n piles of bananas, the ith pile has piles[i] bananas. The guards have gone and will come back in h hours.

Koko can decide her bananas-per-hour eating speed of k. Each hour, she chooses some pile of bananas and eats k bananas from that pile. If the pile has less than k bananas, she eats all of them instead and will not eat any more bananas during this hour.

Koko likes to eat slowly but still wants to finish eating all the bananas before the guards return.

Return _the minimum integer_ k _such that she can eat all the bananas within_ h _hours_.

 

Example 1:

Input: piles = [3,6,7,11], h = 8
Output: 4

Example 2:

Input: piles = [30,11,23,4,20], h = 5
Output: 30

Example 3:

Input: piles = [30,11,23,4,20], h = 6
Output: 23

 

Constraints:

  • 1 <= piles.length <= 104
  • piles.length <= h <= 109
  • 1 <= piles[i] <= 109

Solutions

Solution 1

class Solution:
  def minEatingSpeed(self, piles: List[int], h: int) -> int:
    left, right = 1, int(1e9)
    while left < right:
      mid = (left + right) >> 1
      s = sum((x + mid - 1) // mid for x in piles)
      if s <= h:
        right = mid
      else:
        left = mid + 1
    return left
class Solution {
  public int minEatingSpeed(int[] piles, int h) {
    int left = 1, right = (int) 1e9;
    while (left < right) {
      int mid = (left + right) >>> 1;
      int s = 0;
      for (int x : piles) {
        s += (x + mid - 1) / mid;
      }
      if (s <= h) {
        right = mid;
      } else {
        left = mid + 1;
      }
    }
    return left;
  }
}
class Solution {
public:
  int minEatingSpeed(vector<int>& piles, int h) {
    int left = 1, right = 1e9;
    while (left < right) {
      int mid = (left + right) >> 1;
      int s = 0;
      for (int& x : piles) s += (x + mid - 1) / mid;
      if (s <= h)
        right = mid;
      else
        left = mid + 1;
    }
    return left;
  }
};
func minEatingSpeed(piles []int, h int) int {
  return sort.Search(1e9, func(i int) bool {
    if i == 0 {
      return false
    }
    s := 0
    for _, x := range piles {
      s += (x + i - 1) / i
    }
    return s <= h
  })
}
function minEatingSpeed(piles: number[], h: number): number {
  let left = 1;
  let right = Math.max(...piles);
  while (left < right) {
    const mid = (left + right) >> 1;
    let s = 0;
    for (const x of piles) {
      s += Math.ceil(x / mid);
    }
    if (s <= h) {
      right = mid;
    } else {
      left = mid + 1;
    }
  }
  return left;
}
public class Solution {
  public int MinEatingSpeed(int[] piles, int h) {
    int left = 1, right = piles.Max();
    while (left < right)
    {
      int mid = (left + right) >> 1;
      int s = 0;
      foreach (int pile in piles)
      {
        s += (pile + mid - 1) / mid;
      }
      if (s <= h)
      {
        right = mid;
      }
      else
      {
        left = mid + 1;
      }
    }
    return left;
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文