题库练习 Bracket Cost
← 上一题 下一题 →

A15541 | Bracket Cost

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Daemon Targaryen decided to stop looking like a Metin2 character. He turned himself into the most beautiful thing, a bracket sequence.

For a bracket sequence, we can do two kind of operations:

- Select one of its substrings $^\dagger$ and cyclic shift it to the right. For example, after a cyclic shift to the right, "(())" will become ")(()";
- Insert any bracket, opening '(' or closing ')', wherever you want in the sequence.

We define the cost of a bracket sequence as the minimum number of such operations to make it balanced $^\ddagger$ .

Given a bracket sequence $s$ of length $n$ , find the sum of costs across all its $\frac{n(n+1)}{2}$ non-empty substrings. Note that for each substring we calculate the cost independently.

$^\dagger$ A string $a$ is a substring of a string $b$ if $a$ can be obtained from $b$ by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

$^\ddagger$ A sequence of brackets is called balanced if one can turn it into a valid math expression by adding characters $+$ and $1$ . For example, sequences "(())()", "()", and "(()(()))" are balanced, while ")(", "(()", and "(()))(" are not.

输入格式

Each test consists of multiple test cases. The first line contains a single integer $t$ ( $1 \leq t \leq 10^5$ ) — the number of test cases. The description of test cases follows.

The first line of each test case contains a single integer $n$ ( $1 \le n \le 2 \cdot 10^5$ ) — the length of the bracket sequence.

The second line of each test case contains a string $s$ , consisting only of characters '(' and ')', of length $n$ — the bracket sequence.

It is guaranteed that sum of $n$ across all test cases does not exceed $2 \cdot 10^5$ .

输出格式

For each test case, print a single integer — the sum of costs of all substrings of $s$ .

输入输出样例

输入 #1
5
1
)
4
)()(
3
())
5
(((((
10
)(())))())
输出 #1
1
9
6
35
112
C++ 编辑器
输入
输出