Imagine a warehouse represented as a 2D grid of characters. The grid is given as an array of strings, where each character represents a cell in the warehouse:
The robot can move up, down, left, or right, and each move counts as one step. The robot must collect all items (cells marked with I) before reaching the destination D.
Write a function that, given the warehouse grid, returns the minimum number of steps required for the robot to collect all items and reach the destination. If it is not possible to complete the task, return -1.
Assume that the grid size is moderate (e.g., up to 20x20), which allows an exhaustive search approach if necessary.