CF1926F.Vlad and Avoiding X

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vladislav has a grid of size 7×77 \times 7 , where each cell is colored black or white. In one operation, he can choose any cell and change its color (black \leftrightarrow 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 tt ( 1t2001 \leq t \leq 200 ) — the number of test cases. Then follows the description of the test cases.

Each test case consists of 77 lines, each containing 77 characters. Each of these characters is either W\texttt{W} or B\texttt{B} , 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.

输入输出样例

  • 输入#1

    4
    WWWWWWW
    WWWWBBB
    WWWWWBW
    WWBBBBB
    WWWBWWW
    WWBBBWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WBBBBBW
    WBBBBBW
    WBBBBBW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WWWWWWW
    WBBBBBW
    BBBBBBB
    BBBBBBB
    WWWWWWW
    BBBBBBB
    BBBBBBB
    BBBBBBB

    输出#1

    1
    2
    0
    5

说明/提示

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.

首页