返回介绍

solution / 1100-1199 / 1196.How Many Apples Can You Put into the Basket / README_EN

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

1196. How Many Apples Can You Put into the Basket

中文文档

Description

You have some apples and a basket that can carry up to 5000 units of weight.

Given an integer array weight where weight[i] is the weight of the ith apple, return _the maximum number of apples you can put in the basket_.

 

Example 1:

Input: weight = [100,200,150,1000]
Output: 4
Explanation: All 4 apples can be carried by the basket since their sum of weights is 1450.

Example 2:

Input: weight = [900,950,800,1000,700,800]
Output: 5
Explanation: The sum of weights of the 6 apples exceeds 5000 so we choose any 5 of them.

 

Constraints:

  • 1 <= weight.length <= 103
  • 1 <= weight[i] <= 103

Solutions

Solution 1: Greedy Algorithm

To maximize the number of apples, we should try to minimize the weight of the apples. Therefore, we can sort the weights of the apples, and then put them into the basket in ascending order until the weight of the basket exceeds $5000$. We then return the number of apples in the basket at this point.

If all the apples can be put into the basket, then we return the total number of apples.

The time complexity is $O(n \times \log n)$, and the space complexity is $O(\log n)$. Here, $n$ is the number of apples.

class Solution:
  def maxNumberOfApples(self, weight: List[int]) -> int:
    weight.sort()
    s = 0
    for i, x in enumerate(weight):
      s += x
      if s > 5000:
        return i
    return len(weight)
class Solution {
  public int maxNumberOfApples(int[] weight) {
    Arrays.sort(weight);
    int s = 0;
    for (int i = 0; i < weight.length; ++i) {
      s += weight[i];
      if (s > 5000) {
        return i;
      }
    }
    return weight.length;
  }
}
class Solution {
public:
  int maxNumberOfApples(vector<int>& weight) {
    sort(weight.begin(), weight.end());
    int s = 0;
    for (int i = 0; i < weight.size(); ++i) {
      s += weight[i];
      if (s > 5000) {
        return i;
      }
    }
    return weight.size();
  }
};
func maxNumberOfApples(weight []int) int {
  sort.Ints(weight)
  s := 0
  for i, x := range weight {
    s += x
    if s > 5000 {
      return i
    }
  }
  return len(weight)
}
function maxNumberOfApples(weight: number[]): number {
  weight.sort((a, b) => a - b);
  let s = 0;
  for (let i = 0; i < weight.length; ++i) {
    s += weight[i];
    if (s > 5000) {
      return i;
    }
  }
  return weight.length;
}

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

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

发布评论

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