CF770D.Draw Brackets!

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A sequence of square brackets is regular if by inserting symbols "+" and "1" into it, you can get a regular mathematical expression from it. For example, sequences "[[]][]", "[]" and "[[][[]]]" — are regular, at the same time "][", "[[]" and "[[]]][" — are irregular.

Draw the given sequence using a minimalistic pseudographics in the strip of the lowest possible height — use symbols '+', '-' and '|'. For example, the sequence "[[][]][]" should be represented as:

<br></br>+- -++- -+ <br></br>|+- -++- -+|| |<br></br>|| || ||| |<br></br>|+- -++- -+|| |<br></br>+- -++- -+<br></br>Each bracket should be represented with the hepl of one or more symbols '|' (the vertical part) and symbols '+' and '-' as on the example which is given above.

Brackets should be drawn without spaces one by one, only dividing pairs of consecutive pairwise brackets with a single-space bar (so that the two brackets do not visually merge into one symbol). The image should have the minimum possible height.

The enclosed bracket is always smaller than the surrounding bracket, but each bracket separately strives to maximize the height of the image. So the pair of final brackets in the example above occupies the entire height of the image.

Study carefully the examples below, they adequately explain the condition of the problem. Pay attention that in this problem the answer (the image) is unique.

输入格式

The first line contains an even integer nn ( 2<=n<=1002<=n<=100 ) — the length of the sequence of brackets.

The second line contains the sequence of brackets — these are nn symbols "[" and "]". It is guaranteed that the given sequence of brackets is regular.

输出格式

Print the drawn bracket sequence in the format which is given in the condition. Don't print extra (unnecessary) spaces.

输入输出样例

  • 输入#1

    8
    [[][]][]
    

    输出#1

    +-        -++- -+
    |+- -++- -+||   |
    ||   ||   |||   |
    |+- -++- -+||   |
    +-        -++- -+
    
  • 输入#2

    6
    [[[]]]
    

    输出#2

    +-     -+
    |+-   -+|
    ||+- -+||
    |||   |||
    ||+- -+||
    |+-   -+|
    +-     -+
    
  • 输入#3

    6
    [[][]]
    

    输出#3

    +-        -+
    |+- -++- -+|
    ||   ||   ||
    |+- -++- -+|
    +-        -+
    
  • 输入#4

    2
    []
    

    输出#4

    +- -+
    |   |
    +- -+
    
  • 输入#5

    4
    [][]
    

    输出#5

    +- -++- -+
    |   ||   |
    +- -++- -+
    
首页