#P1926F. Vlad and Avoiding X
Vlad and Avoiding X
No submission language available for this problem.
Description
Vladislav has a grid of size , where each cell is colored black or white. In one operation, he can choose any cell and change its color (black white).
Find the minimum number of operations required to ensure that there are no black cells with four diagonal neighbors also being black.

The left image shows that initially there are two black cells violating the condition. By flipping one cell, the grid will work.
The first line of input contains a single integer () — the number of test cases. Then follows the description of the test cases.
Each test case consists of lines, each containing characters. Each of these characters is either or , denoting a white or black cell, respectively.
For each test case, output a single integer — the minimum number of operations required to ensure that there are no black cells with all four diagonal neighbors also being black.
Input
The first line of input contains a single integer () — the number of test cases. Then follows the description of the test cases.
Each test case consists of lines, each containing characters. Each of these characters is either or , denoting a white or black cell, respectively.
Output
For each test case, output a single integer — the minimum number of operations required to ensure that there are no black cells with all four diagonal neighbors also being black.
Note
The first test case is illustrated in the statement.
The second test case is illustrated below:

In the third test case, the grid already satisfies the condition.