A house is represented by a matrix where β\β and β/β represent a wall and blank space is empty space. We will consider two rooms different if we will be unable to reach another room.
Input:
[
β /β
β/\β
]
Output: 3
Explanation: 2 X 2 house is shown below:
The first line of input contains an integer 'T' representing the number of test cases.
The first line of each test case contains the βNβ number of strings.
The next βNβ lines of each test case contain a single string of length βNβ.
For each test case, return the number of the separate rooms.
The output of each test case will be printed in a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 5
2 <= N <= 30
Time limit: 1 sec
First, we will convert our given matrix to a more convenient one so that it would be easy for us to find the number of components in the graph(i.e., Number of rooms). Then we can find the number of components either by depth-first search or disjoint union.
Just magnify each box of the house three times.
The steps are as follows:
After this we will count the number of components by using depth-first search or union-find.
void βDFSβ(int βiβ, int βjβ, vector<vector<int>> &βnewHouseβ, int βNβ)
{
newHouse[i][j] := 1
We will call dfs again on the following values ('i' + 1, βjβ), ('i' - 1, βjβ), ('i', βjβ + 1), ('i', βjβ - 1), if these values exist in the table and βnewHouseβ value is 0.
dfs(a, b, βnewHouseβ, βNβ);
}
We are using DFS because it is easy to understand and implement.