A14088 | Garden of the Sun
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are many sunflowers in the Garden of the Sun.
Garden of the Sun is a rectangular table with $n$ rows and $m$ columns, where the cells of the table are farmlands. All of the cells grow a sunflower on it. Unfortunately, one night, the lightning stroke some (possibly zero) cells, and sunflowers on those cells were burned into ashes. In other words, those cells struck by the lightning became empty. Magically, any two empty cells have no common points (neither edges nor corners).
Now the owner wants to remove some (possibly zero) sunflowers to reach the following two goals:
- When you are on an empty cell, you can walk to any other empty cell. In other words, those empty cells are connected.
- There is exactly one simple path between any two empty cells. In other words, there is no cycle among the empty cells.
You can walk from an empty cell to another if they share a common edge.
Could you please give the owner a solution that meets all her requirements?
Note that you are not allowed to plant sunflowers. You don't need to minimize the number of sunflowers you remove. It can be shown that the answer always exists.
Garden of the Sun is a rectangular table with $n$ rows and $m$ columns, where the cells of the table are farmlands. All of the cells grow a sunflower on it. Unfortunately, one night, the lightning stroke some (possibly zero) cells, and sunflowers on those cells were burned into ashes. In other words, those cells struck by the lightning became empty. Magically, any two empty cells have no common points (neither edges nor corners).
Now the owner wants to remove some (possibly zero) sunflowers to reach the following two goals:
- When you are on an empty cell, you can walk to any other empty cell. In other words, those empty cells are connected.
- There is exactly one simple path between any two empty cells. In other words, there is no cycle among the empty cells.
You can walk from an empty cell to another if they share a common edge.
Could you please give the owner a solution that meets all her requirements?
Note that you are not allowed to plant sunflowers. You don't need to minimize the number of sunflowers you remove. It can be shown that the answer always exists.
输入格式
The input consists of multiple test cases. The first line contains a single integer $t$ ( $1\le t\le 10^4$ ) — the number of test cases. The description of the test cases follows.
The first line contains two integers $n$ , $m$ ( $1 \le n,m \le 500$ ) — the number of rows and columns.
Each of the next $n$ lines contains $m$ characters. Each character is either 'X' or '.', representing an empty cell and a cell that grows a sunflower, respectively.
It is guaranteed that the sum of $n \cdot m$ for all test cases does not exceed $250\,000$ .
The first line contains two integers $n$ , $m$ ( $1 \le n,m \le 500$ ) — the number of rows and columns.
Each of the next $n$ lines contains $m$ characters. Each character is either 'X' or '.', representing an empty cell and a cell that grows a sunflower, respectively.
It is guaranteed that the sum of $n \cdot m$ for all test cases does not exceed $250\,000$ .
输出格式
For each test case, print $n$ lines. Each should contain $m$ characters, representing one row of the table. Each character should be either 'X' or '.', representing an empty cell and a cell with a sunflower, respectively.
If there are multiple answers, you can print any. It can be shown that the answer always exists.
If there are multiple answers, you can print any. It can be shown that the answer always exists.
输入输出样例
输入 #1
5 3 3 X.X ... X.X 4 4 .... .X.X .... .X.X 5 5 .X... ....X .X... ..... X.X.X 1 10 ....X.X.X. 2 2 .. ..
输出 #1
XXX ..X XXX XXXX .X.X .X.. .XXX .X... .XXXX .X... .X... XXXXX XXXXXXXXXX .. ..
Let's use $(x,y)$ to describe the cell on $x$ -th row and $y$ -th column.
In the following pictures white, yellow, and blue cells stand for the cells that grow a sunflower, the cells lightning stroke, and the cells sunflower on which are removed, respectively.

In the first test case, one possible solution is to remove sunflowers on $(1,2)$ , $(2,3)$ and $(3 ,2)$ .

Another acceptable solution is to remove sunflowers on $(1,2)$ , $(2,2)$ and $(3,2)$ .

This output is considered wrong because there are 2 simple paths between any pair of cells (there is a cycle). For example, there are 2 simple paths between $(1,1)$ and $(3,3)$ .
1. $(1,1)\to (1,2)\to (1,3)\to (2,3)\to (3,3)$
2. $(1,1)\to (2,1)\to (3,1)\to (3,2)\to (3,3)$

This output is considered wrong because you can't walk from $(1,1)$ to $(3,3)$ .
In the following pictures white, yellow, and blue cells stand for the cells that grow a sunflower, the cells lightning stroke, and the cells sunflower on which are removed, respectively.

In the first test case, one possible solution is to remove sunflowers on $(1,2)$ , $(2,3)$ and $(3 ,2)$ .

Another acceptable solution is to remove sunflowers on $(1,2)$ , $(2,2)$ and $(3,2)$ .

This output is considered wrong because there are 2 simple paths between any pair of cells (there is a cycle). For example, there are 2 simple paths between $(1,1)$ and $(3,3)$ .
1. $(1,1)\to (1,2)\to (1,3)\to (2,3)\to (3,3)$
2. $(1,1)\to (2,1)\to (3,1)\to (3,2)\to (3,3)$

This output is considered wrong because you can't walk from $(1,1)$ to $(3,3)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted