==================
There are K containers each with a capacity vector defined in three dimensions as _
When an object of capacity (a, b, c) is put into container of capacity (A, B, C), the containers remaining capacity becomes **(A — a, B — b, C — c)**.<br>↵
There are N objects of varying capcities to be put into containers. **Determine if the all objects can be fit into the containers or not
(1 <= N <= 150). The capacity ranges fit an integer.
An exact solution would be amazing, but a good heuristic that might be able to solve this problem reasonably well is much appreciated. Any ideas?<br>