Calculate the maximum number of prime and standard items that can fit into a 500,000 square foot warehouse. You must prioritize prime items first.
| item_id(INTEGER) | item_type(VARCHAR) | item_count_per_batch(INTEGER) | batch_square_footage(DECIMAL) |
|---|---|---|---|
| 1 | prime_delivery | 200 | 150.5 |
| 2 | standard_delivery | 500 | 300 |
| item_type(VARCHAR) | priority(VARCHAR) |
|---|---|
| prime_delivery | high |
| standard_delivery | low |
| warehouse_id(INTEGER) | total_sqft(INTEGER) |
|---|---|
| 1 | 500000 |
| item_type(VARCHAR) | item_count(INTEGER) |
|---|---|
| prime_delivery | 664400 |
| standard_delivery | 0 |