A10815 | Draw Brackets!
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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:
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.
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 $n$ ( $2<=n<=100$ ) — the length of the sequence of brackets.
The second line contains the sequence of brackets — these are $n$ symbols "\[" and "\]". It is guaranteed that the given sequence of brackets is regular.
The second line contains the sequence of brackets — these are $n$ 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
+- -++- -+ | || | +- -++- -+
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted