Imagine you are tasked with planning the irrigation for a rectangular farmland represented by a 2D grid. Each cell in the grid can be in one of three states:
Water from each water source flows to its adjacent cells (up, down, left, right) and takes one minute to move from one cell to an adjacent cell. Water can spread from the water source to neighboring cells (that contain dry soil) and then further spread from those cells, continuing every minute.
Your goal is to determine the minimum time required to irrigate all soil cells that can possibly receive water. If there is any cell with dry soil that never gets watered, return -1.
Example 1:
Input: [
[0, 1, 0],
[0, -1, 0],
[0, 0, 0]
]
Output: 3
Example 2:
Input: [
[0, -1, 1],
[0, -1, 0],
[0, 0, 0]
]
Output: -1
Implement a function or method to solve the problem based on the description above.