A12075 | Lasers and Mirrors
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Oleg came to see the maze of mirrors. The maze is a $n$ by $n$ room in which each cell is either empty or contains a mirror connecting opposite corners of this cell. Mirrors in this maze reflect light in a perfect way, which causes the interesting visual effects and contributes to the loss of orientation in the maze.
Oleg is a person of curious nature, so he decided to install $n$ lasers facing internal of the maze on the south wall of the maze. On the north wall of the maze, Oleg installed $n$ receivers, also facing internal of the maze. Let's number lasers and receivers from west to east with distinct integers from $1$ to $n$ . Each laser sends a beam of some specific kind and receiver with number $a_i$ should receive the beam sent from laser number $i$ . Since two lasers' beams can't come to the same receiver, these numbers form a permutation — each of the receiver numbers occurs exactly once.
You came to the maze together with Oleg. Help him to place the mirrors in the initially empty maze so that the maximum number of lasers' beams will come to the receivers they should. There are no mirrors outside the maze, so if the laser beam leaves the maze, it will not be able to go back.
Oleg is a person of curious nature, so he decided to install $n$ lasers facing internal of the maze on the south wall of the maze. On the north wall of the maze, Oleg installed $n$ receivers, also facing internal of the maze. Let's number lasers and receivers from west to east with distinct integers from $1$ to $n$ . Each laser sends a beam of some specific kind and receiver with number $a_i$ should receive the beam sent from laser number $i$ . Since two lasers' beams can't come to the same receiver, these numbers form a permutation — each of the receiver numbers occurs exactly once.
You came to the maze together with Oleg. Help him to place the mirrors in the initially empty maze so that the maximum number of lasers' beams will come to the receivers they should. There are no mirrors outside the maze, so if the laser beam leaves the maze, it will not be able to go back.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 1000$ ) — the size of the maze.
The second line contains a permutation of $n$ integers $a_i$ ( $1 \le a_i \le n$ ), where $a_i$ defines the number of the receiver, to which the beam from $i$ -th laser should come.
The second line contains a permutation of $n$ integers $a_i$ ( $1 \le a_i \le n$ ), where $a_i$ defines the number of the receiver, to which the beam from $i$ -th laser should come.
输出格式
In the first line print the maximum possible number of laser beams, which can come to the receivers they should.
In the next $n$ lines of length $n$ print the arrangement of mirrors, causing such number of laser beams to come where they should. If the corresponding cell is empty, print ".", otherwise print "/" or "\\", depending on the orientation of the mirror.
In your output north should be above, south should be below, and west and east should be on left and on the right respectively.
It is allowed for laser beams to come not to the receivers they correspond to, but they are not counted in the answer.
If there are multiple arrangements of mirrors leading to the optimal answer — print any of them.
In the next $n$ lines of length $n$ print the arrangement of mirrors, causing such number of laser beams to come where they should. If the corresponding cell is empty, print ".", otherwise print "/" or "\\", depending on the orientation of the mirror.
In your output north should be above, south should be below, and west and east should be on left and on the right respectively.
It is allowed for laser beams to come not to the receivers they correspond to, but they are not counted in the answer.
If there are multiple arrangements of mirrors leading to the optimal answer — print any of them.
输入输出样例
输入 #1
4 4 1 3 2
输出 #1
3 .\.. \\.. /../ ...\
The picture illustrates the arrangements of the mirrors in the first example.


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