A14222 | Almost Rectangle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There is a square field of size $n \times n$ in which two cells are marked. These cells can be in the same row or column.
You are to mark two more cells so that they are the corners of a rectangle with sides parallel to the coordinate axes.
For example, if $n=4$ and a rectangular field looks like this (there are asterisks in the marked cells):
$$\begin{matrix} .&.&*&.\\ .&.&.&.\\ *&.&.&.\\ .&.&.&.\\ \end{matrix}$$
Then you can mark two more cells as follows
$$\begin{matrix} *&.&*&.\\ .&.&.&.\\ *&.&*&.\\ .&.&.&.\\ \end{matrix} $$
If there are several possible solutions, then print any of them.
You are to mark two more cells so that they are the corners of a rectangle with sides parallel to the coordinate axes.
For example, if $n=4$ and a rectangular field looks like this (there are asterisks in the marked cells):
$$\begin{matrix} .&.&*&.\\ .&.&.&.\\ *&.&.&.\\ .&.&.&.\\ \end{matrix}$$
Then you can mark two more cells as follows
$$\begin{matrix} *&.&*&.\\ .&.&.&.\\ *&.&*&.\\ .&.&.&.\\ \end{matrix} $$
If there are several possible solutions, then print any of them.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 400$ ). Then $t$ test cases follow.
The first row of each test case contains a single integer $n$ ( $2 \le n \le 400$ ) — the number of rows and columns in the table.
The following $n$ lines each contain $n$ characters '.' or '\*' denoting empty and marked cells, respectively.
It is guaranteed that the sums of $n$ for all test cases do not exceed $400$ .
It is guaranteed that there are exactly two asterisks on the field. They can be in the same row/column.
It is guaranteed that the solution exists.
The first row of each test case contains a single integer $n$ ( $2 \le n \le 400$ ) — the number of rows and columns in the table.
The following $n$ lines each contain $n$ characters '.' or '\*' denoting empty and marked cells, respectively.
It is guaranteed that the sums of $n$ for all test cases do not exceed $400$ .
It is guaranteed that there are exactly two asterisks on the field. They can be in the same row/column.
It is guaranteed that the solution exists.
输出格式
For each test case, output $n$ rows of $n$ characters — a field with four asterisks marked corresponding to the statements. If there multiple correct answers, print any of them.
输入输出样例
输入 #1
6 4 ..*. .... *... .... 2 *. .* 2 .* .* 3 *.* ... ... 5 ..... ..*.. ..... .*... ..... 4 .... .... *... *...
输出 #1
*.*. .... *.*. .... ** ** ** ** *.* *.* ... ..... .**.. ..... .**.. ..... .... .... **.. **..
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted