A14595 | RBS
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A bracket sequence is a string containing only characters "(" and ")". A regular bracket sequence (or, shortly, an RBS) is a bracket sequence that can be transformed into a correct arithmetic expression by inserting characters "1" and "+" between the original characters of the sequence. For example:
- bracket sequences "()()" and "(())" are regular (the resulting expressions are: "(1)+(1)" and "((1+1)+1)");
- bracket sequences ")(", "(" and ")" are not.
Let's denote the concatenation of two strings $x$ and $y$ as $x+y$ . For example, "()()" $+$ ")(" $=$ "()())(".
You are given $n$ bracket sequences $s_1, s_2, \dots, s_n$ . You can rearrange them in any order (you can rearrange only the strings themselves, but not the characters in them).
Your task is to rearrange the strings in such a way that the string $s_1 + s_2 + \dots + s_n$ has as many non-empty prefixes that are RBS as possible.
- bracket sequences "()()" and "(())" are regular (the resulting expressions are: "(1)+(1)" and "((1+1)+1)");
- bracket sequences ")(", "(" and ")" are not.
Let's denote the concatenation of two strings $x$ and $y$ as $x+y$ . For example, "()()" $+$ ")(" $=$ "()())(".
You are given $n$ bracket sequences $s_1, s_2, \dots, s_n$ . You can rearrange them in any order (you can rearrange only the strings themselves, but not the characters in them).
Your task is to rearrange the strings in such a way that the string $s_1 + s_2 + \dots + s_n$ has as many non-empty prefixes that are RBS as possible.
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 20$ ).
Then $n$ lines follow, the $i$ -th of them contains $s_i$ — a bracket sequence (a string consisting of characters "(" and/or ")". All sequences $s_i$ are non-empty, their total length does not exceed $4 \cdot 10^5$ .
Then $n$ lines follow, the $i$ -th of them contains $s_i$ — a bracket sequence (a string consisting of characters "(" and/or ")". All sequences $s_i$ are non-empty, their total length does not exceed $4 \cdot 10^5$ .
输出格式
Print one integer — the maximum number of non-empty prefixes that are RBS for the string $s_1 + s_2 + \dots + s_n$ , if the strings $s_1, s_2, \dots, s_n$ can be rearranged arbitrarily.
输入输出样例
输入 #1
2 ( )
输出 #1
1
输入 #2
4 ()()()) ( ( )
输出 #2
4
输入 #3
1 (())
输出 #3
1
输入 #4
1 )(()
输出 #4
0
In the first example, you can concatenate the strings as follows: "(" $+$ ")" $=$ "()", the resulting string will have one prefix, that is an RBS: "()".
In the second example, you can concatenate the strings as follows: "(" $+$ ")" $+$ "()()())" $+$ "(" $=$ "()()()())(", the resulting string will have four prefixes that are RBS: "()", "()()", "()()()", "()()()()".
The third and the fourth examples contain only one string each, so the order is fixed.
In the second example, you can concatenate the strings as follows: "(" $+$ ")" $+$ "()()())" $+$ "(" $=$ "()()()())(", the resulting string will have four prefixes that are RBS: "()", "()()", "()()()", "()()()()".
The third and the fourth examples contain only one string each, so the order is fixed.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted