题库练习 Crazy Robot
← 上一题 下一题 →

A14704 | Crazy Robot

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

There is a grid, consisting of $n$ rows and $m$ columns. Each cell of the grid is either free or blocked. One of the free cells contains a lab. All the cells beyond the borders of the grid are also blocked.

A crazy robot has escaped from this lab. It is currently in some free cell of the grid. You can send one of the following commands to the robot: "move right", "move down", "move left" or "move up". Each command means moving to a neighbouring cell in the corresponding direction.

However, as the robot is crazy, it will do anything except following the command. Upon receiving a command, it will choose a direction such that it differs from the one in command and the cell in that direction is not blocked. If there is such a direction, then it will move to a neighbouring cell in that direction. Otherwise, it will do nothing.

We want to get the robot to the lab to get it fixed. For each free cell, determine if the robot can be forced to reach the lab starting in this cell. That is, after each step of the robot a command can be sent to a robot such that no matter what different directions the robot chooses, it will end up in a lab.

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 1000$ ) — the number of testcases.

The first line of each testcase contains two integers $n$ and $m$ ( $1 \le n, m \le 10^6$ ; $n \cdot m \le 10^6$ ) — the number of rows and the number of columns in the grid.

The $i$ -th of the next $n$ lines provides a description of the $i$ -th row of the grid. It consists of $m$ elements of one of three types:

- '.' — the cell is free;
- '#' — the cell is blocked;
- 'L' — the cell contains a lab.

The grid contains exactly one lab. The sum of $n \cdot m$ over all testcases doesn't exceed $10^6$ .

输出格式

For each testcase find the free cells that the robot can be forced to reach the lab from. Given the grid, replace the free cells (marked with a dot) with a plus sign ('+') for the cells that the robot can be forced to reach the lab from. Print the resulting grid.

输入输出样例

输入 #1
4
3 3
...
.L.
...
4 5
#....
..##L
...#.
.....
1 1
L
1 9
....L..#.
输出 #1
...
.L.
...
#++++
..##L
...#+
...++
L
++++L++#.
C++ 编辑器
输入
输出