Problem Description
You are given two arrays of integers, fruits
and baskets
, each of length n
, where fruits[i]
represents the quantity of the i
th type of fruit, and baskets[j]
represents the capacity of the j
th basket. From left to right, place the fruits according to these rules: Each fruit type must be placed in the leftmost available basket with a capacity greater than or equal to the quantity of that fruit type. Each basket can hold only one type of fruit. If a fruit type cannot be placed in any basket, it remains unplaced. Return the number of fruit types that remain unplaced after all possible allocations are made.
Key Insights
- Each fruit type can only be placed in one basket.
- Baskets must be filled from left to right based on their capacity.
- If a basket's capacity is insufficient for a fruit type, the algorithm must move to the next basket.
- The goal is to maximize the placement of fruit types to minimize the number of unplaced types.
Space and Time Complexity
Time Complexity: O(n * m) where n is the number of fruit types and m is the number of baskets.
Space Complexity: O(1) as we are using a constant amount of additional space.
Solution
The algorithm iterates through each fruit type and tries to place it in the leftmost available basket with sufficient capacity. If a basket can hold the fruit, it is placed, and the algorithm moves to the next fruit. If no baskets can accommodate a fruit type, it is counted as unplaced. This approach uses a simple linear scan through the baskets for each fruit type.