A14383 | Compressed Bracket Sequence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
William has a favorite bracket sequence. Since his favorite sequence is quite big he provided it to you as a sequence of positive integers $c_1, c_2, \dots, c_n$ where $c_i$ is the number of consecutive brackets "(" if $i$ is an odd number or the number of consecutive brackets ")" if $i$ is an even number.
For example for a bracket sequence "((())()))" a corresponding sequence of numbers is $[3, 2, 1, 3]$ .
You need to find the total number of continuous subsequences (subsegments) $[l, r]$ ( $l \le r$ ) of the original bracket sequence, which are regular bracket sequences.
A bracket sequence is called regular if it is possible to obtain correct arithmetic expression by inserting characters "+" and "1" into this sequence. For example, sequences "(())()", "()" and "(()(()))" are regular, while ")(", "(()" and "(()))(" are not.
For example for a bracket sequence "((())()))" a corresponding sequence of numbers is $[3, 2, 1, 3]$ .
You need to find the total number of continuous subsequences (subsegments) $[l, r]$ ( $l \le r$ ) of the original bracket sequence, which are regular bracket sequences.
A bracket sequence is called regular if it is possible to obtain correct arithmetic expression by inserting characters "+" and "1" into this sequence. For example, sequences "(())()", "()" and "(()(()))" are regular, while ")(", "(()" and "(()))(" are not.
输入格式
The first line contains a single integer $n$ $(1 \le n \le 1000)$ , the size of the compressed sequence.
The second line contains a sequence of integers $c_1, c_2, \dots, c_n$ $(1 \le c_i \le 10^9)$ , the compressed sequence.
The second line contains a sequence of integers $c_1, c_2, \dots, c_n$ $(1 \le c_i \le 10^9)$ , the compressed sequence.
输出格式
Output a single integer — the total number of subsegments of the original bracket sequence, which are regular bracket sequences.
It can be proved that the answer fits in the signed 64-bit integer data type.
It can be proved that the answer fits in the signed 64-bit integer data type.
输入输出样例
输入 #1
5 4 1 2 3 1
输出 #1
5
输入 #2
6 1 3 2 1 2 4
输出 #2
6
输入 #3
6 1 1 1 1 2 2
输出 #3
7
In the first example a sequence (((()(()))( is described. This bracket sequence contains $5$ subsegments which form regular bracket sequences:
1. Subsequence from the $3$ rd to $10$ th character: (()(()))
2. Subsequence from the $4$ th to $5$ th character: ()
3. Subsequence from the $4$ th to $9$ th character: ()(())
4. Subsequence from the $6$ th to $9$ th character: (())
5. Subsequence from the $7$ th to $8$ th character: ()
In the second example a sequence ()))(()(()))) is described.
In the third example a sequence ()()(()) is described.
1. Subsequence from the $3$ rd to $10$ th character: (()(()))
2. Subsequence from the $4$ th to $5$ th character: ()
3. Subsequence from the $4$ th to $9$ th character: ()(())
4. Subsequence from the $6$ th to $9$ th character: (())
5. Subsequence from the $7$ th to $8$ th character: ()
In the second example a sequence ()))(()(()))) is described.
In the third example a sequence ()()(()) is described.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted