Problem Description
A virus is spreading rapidly, and your task is to quarantine the infected area by installing walls. The world is modeled as an m x n binary grid isInfected, where isInfected[i][j] == 0 represents uninfected cells, and isInfected[i][j] == 1 represents cells contaminated with the virus. A wall can be installed between any two 4-directionally adjacent cells, on the shared boundary. Each day, you can install walls around only one region that threatens the most uninfected cells the following night. Return the number of walls used to quarantine all the infected regions. If the world will become fully infected, return the number of walls used.
Key Insights
- Contaminated regions must be identified and quantified based on their potential threat to uninfected cells.
- Walls can only be built around one region per day, targeting the most threatening one.
- The spread of the virus must be simulated after each day of wall installation.
- The algorithm involves a breadth-first search (BFS) or depth-first search (DFS) to explore regions and their boundaries.
Space and Time Complexity
Time Complexity: O(m * n) - Each cell is processed a limited number of times. Space Complexity: O(m * n) - For storing visited states and potentially the queue for BFS.
Solution
To solve the problem, we can use a breadth-first search (BFS) or depth-first search (DFS) to explore the infected regions. We will:
- Traverse the grid to identify all infected regions using BFS/DFS.
- For each infected region, calculate the number of walls needed to quarantine it and the number of uninfected cells it threatens.
- Select the region that threatens the most uninfected cells to quarantine.
- Install walls around that region and simulate the virus spreading to adjacent cells.
- Repeat the process until no infected regions remain or the entire grid is infected.