Problem Description
Given four integers length, width, height, and mass, representing the dimensions and mass of a box, return a string representing the category of the box. The box can be classified as "Bulky", "Heavy", "Both", or "Neither" based on specific criteria.
Key Insights
- A box is classified as "Bulky" if any dimension is >= 10^4 or if its volume (length * width * height) is >= 10^9.
- A box is classified as "Heavy" if its mass is >= 100.
- The final category can be "Both" if the box is classified as both "Bulky" and "Heavy".
- If neither condition is met, the box is classified as "Neither".
Space and Time Complexity
Time Complexity: O(1) - The operations performed are constant time checks. Space Complexity: O(1) - No additional space is used that scales with input size.
Solution
To solve the problem, we will:
- Calculate the volume of the box using the formula: volume = length * width * height.
- Check if any dimension is >= 10^4 to determine if the box is "Bulky".
- Check if the mass is >= 100 to determine if the box is "Heavy".
- Return the appropriate category based on the checks.