A11494 | The Monster
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
As Will is stuck in the Upside Down, he can still communicate with his mom, Joyce, through the Christmas lights (he can turn them on and off with his mind). He can't directly tell his mom where he is, because the monster that took him to the Upside Down will know and relocate him.
Thus, he came up with a puzzle to tell his mom his coordinates. His coordinates are the answer to the following problem.
A string consisting only of parentheses ('(' and ')') is called a bracket sequence. Some bracket sequence are called correct bracket sequences. More formally:
- Empty string is a correct bracket sequence.
- if $s$ is a correct bracket sequence, then $(s)$ is also a correct bracket sequence.
- if $s$ and $t$ are correct bracket sequences, then $st$ (concatenation of $s$ and $t$ ) is also a correct bracket sequence.
A string consisting of parentheses and question marks ('?') is called pretty if and only if there's a way to replace each question mark with either '(' or ')' such that the resulting string is a non-empty correct bracket sequence.
Will gave his mom a string $s$ consisting of parentheses and question marks (using Morse code through the lights) and his coordinates are the number of pairs of integers $(l,r)$ such that $1<=l<=r<=|s|$ and the string $s_{l}s_{l+1}...\ s_{r}$ is pretty, where $s_{i}$ is $i$ -th character of $s$ .
Joyce doesn't know anything about bracket sequences, so she asked for your help.
Thus, he came up with a puzzle to tell his mom his coordinates. His coordinates are the answer to the following problem.
A string consisting only of parentheses ('(' and ')') is called a bracket sequence. Some bracket sequence are called correct bracket sequences. More formally:
- Empty string is a correct bracket sequence.
- if $s$ is a correct bracket sequence, then $(s)$ is also a correct bracket sequence.
- if $s$ and $t$ are correct bracket sequences, then $st$ (concatenation of $s$ and $t$ ) is also a correct bracket sequence.
A string consisting of parentheses and question marks ('?') is called pretty if and only if there's a way to replace each question mark with either '(' or ')' such that the resulting string is a non-empty correct bracket sequence.
Will gave his mom a string $s$ consisting of parentheses and question marks (using Morse code through the lights) and his coordinates are the number of pairs of integers $(l,r)$ such that $1<=l<=r<=|s|$ and the string $s_{l}s_{l+1}...\ s_{r}$ is pretty, where $s_{i}$ is $i$ -th character of $s$ .
Joyce doesn't know anything about bracket sequences, so she asked for your help.
输入格式
The first and only line of input contains string $s$ , consisting only of characters '(', ')' and '?' ( $2<=|s|<=5000$ ).
输出格式
Print the answer to Will's puzzle in the first and only line of output.
输入输出样例
输入 #1
((?))
输出 #1
4
输入 #2
??()??
输出 #2
7
For the first sample testcase, the pretty substrings of $s$ are:
1. "(?" which can be transformed to "()".
2. "?)" which can be transformed to "()".
3. "((?)" which can be transformed to "(())".
4. "(?))" which can be transformed to "(())".
For the second sample testcase, the pretty substrings of $s$ are:
1. "??" which can be transformed to "()".
2. "()".
3. "??()" which can be transformed to "()()".
4. "?()?" which can be transformed to "(())".
5. "??" which can be transformed to "()".
6. "()??" which can be transformed to "()()".
7. "??()??" which can be transformed to "()()()".
1. "(?" which can be transformed to "()".
2. "?)" which can be transformed to "()".
3. "((?)" which can be transformed to "(())".
4. "(?))" which can be transformed to "(())".
For the second sample testcase, the pretty substrings of $s$ are:
1. "??" which can be transformed to "()".
2. "()".
3. "??()" which can be transformed to "()()".
4. "?()?" which can be transformed to "(())".
5. "??" which can be transformed to "()".
6. "()??" which can be transformed to "()()".
7. "??()??" which can be transformed to "()()()".
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted