CF1063E.Lasers and Mirrors
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ai 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≤n≤1000 ) — the size of the maze.
The second line contains a permutation of n integers ai ( 1≤ai≤n ), where ai 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.
输入输出样例
输入#1
4 4 1 3 2
输出#1
3 .\.. \\.. /../ ...\
说明/提示
The picture illustrates the arrangements of the mirrors in the first example.