CF1749E.Cactus Wall

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Monocarp is playing Minecraft and wants to build a wall of cacti. He wants to build it on a field of sand of the size of n×mn \times m cells. Initially, there are cacti in some cells of the field. Note that, in Minecraft, cacti cannot grow on cells adjacent to each other by side — and the initial field meets this restriction. Monocarp can plant new cacti (they must also fulfil the aforementioned condition). He can't chop down any of the cacti that are already growing on the field — he doesn't have an axe, and the cacti are too prickly for his hands.

Monocarp believes that the wall is complete if there is no path from the top row of the field to the bottom row, such that:

  • each two consecutive cells in the path are adjacent by side;
  • no cell belonging to the path contains a cactus.

Your task is to plant the minimum number of cacti to build a wall (or to report that this is impossible).

输入格式

The first line contains a single integer tt ( 1t1031 \le t \le 10^3 ) — number of test cases.

The first line of each test case contains two integers nn and mm ( 2n,m21052 \le n, m \le 2 \cdot 10^5 ; n×m4105n \times m \le 4 \cdot 10^5 ) — the number of rows and columns, respectively.

Then nn rows follow, ii -th row contains a string sis_i of length mm , where si,js_{i, j} is '#', if a cactus grows at the intersection of the ii -th row and the jj -th column. Otherwise, si,js_{i, j} is '.'.

The sum of n×mn \times m over all test cases does not exceed 41054 \cdot 10^5 .

输出格式

For each test case, print NO in the first line if it is impossible to build a cactus wall without breaking the rules. Otherwise, print YES in the first line, then print nn lines of mm characters each — the field itself, where the jj -th character of the ii -th line is equal to '#', if there is a cactus on the intersection of the ii -th row and the jj -th column, otherwise it is '.'. If there are multiple optimal answers, print any of them.

输入输出样例

  • 输入#1

    4
    2 4
    .#..
    ..#.
    3 3
    #.#
    ...
    .#.
    5 5
    .....
    .....
    .....
    .....
    .....
    4 3
    #..
    .#.
    #.#
    ...

    输出#1

    YES
    .#.#
    #.#.
    NO
    YES
    ....#
    ...#.
    ..#..
    .#...
    #....
    YES
    #..
    .#.
    #.#
    ...
首页