Apple Redistribution into Boxes

You are given an array apple of size n and an array capacity of size m.

There are n packs where the i^th pack contains apple[i] apples. There are m boxes as well, and the i^th box has a capacity of capacity[i] apples.

Return the minimum number of boxes you need to select to redistribute these n packs of apples into boxes.

Note that apples from the same pack can be distributed into different boxes.

Example 1
Inputapple = [1,3,2], capacity = [4,3,1,5,2]
Output2
We will use boxes with capacities 4 and 5, whose total capacity is greater than or equal to the total number of apples.
Example 2
Inputapple = [5,5,5], capacity = [2,4,2,7]
Output4
We will need to use all the boxes.

Constraints

  • 1 <= n == apple.length <= 50
  • 1 <= m == capacity.length <= 50
  • 1 <= apple[i], capacity[i] <= 50
  • The input is generated such that it's possible to redistribute packs of apples into boxes.

Asked at 3 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate