CF1450C1.Errich-Tac-Toe (Easy Version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The only difference between the easy and hard versions is that tokens of type O do not appear in the input of the easy version.

Errichto gave Monogon the following challenge in order to intimidate him from taking his top contributor spot on Codeforces.

In a Tic-Tac-Toe grid, there are nn rows and nn columns. Each cell of the grid is either empty or contains a token. There are two types of tokens: X and O. If there exist three tokens of the same type consecutive in a row or column, it is a winning configuration. Otherwise, it is a draw configuration.

The patterns in the first row are winning configurations. The patterns in the second row are draw configurations. In an operation, you can change an X to an O, or an O to an X. Let kk denote the total number of tokens in the grid. Your task is to make the grid a draw in at most k3\lfloor \frac{k}{3}\rfloor (rounding down) operations.

You are not required to minimize the number of operations.

输入格式

The first line contains a single integer tt ( 1t1001\le t\le 100 ) — the number of test cases.

The first line of each test case contains a single integer nn ( 1n3001\le n\le 300 ) — the size of the grid.

The following nn lines each contain a string of nn characters, denoting the initial grid. The character in the ii -th row and jj -th column is '.' if the cell is empty, or it is the type of token in the cell: 'X' or 'O'.

It is guaranteed that not all cells are empty.

In the easy version, the character 'O' does not appear in the input.

The sum of nn across all test cases does not exceed 300300 .

输出格式

For each test case, print the state of the grid after applying the operations.

We have proof that a solution always exists. If there are multiple solutions, print any.

输入输出样例

  • 输入#1

    3
    3
    .X.
    XXX
    .X.
    6
    XX.XXX
    XXXXXX
    XXX.XX
    XXXXXX
    XX.X.X
    XXXXXX
    5
    XXX.X
    .X..X
    XXX.X
    ..X..
    ..X..

    输出#1

    .X.
    XOX
    .X.
    XX.XXO
    XOXXOX
    OXX.XX
    XOOXXO
    XX.X.X
    OXXOXX
    XOX.X
    .X..X
    XXO.O
    ..X..
    ..X..

说明/提示

In the first test case, there are initially three 'X' consecutive in the second row and the second column. By changing the middle token to 'O' we make the grid a draw, and we only changed 15/31\le \lfloor 5/3\rfloor token.

In the second test case, we change only 932/39\le \lfloor 32/3\rfloor tokens, and there does not exist any three 'X' or 'O' consecutive in a row or column, so it is a draw.

In the third test case, we change only 312/33\le \lfloor 12/3\rfloor tokens, and the resulting grid is a draw.

首页