BRCKTS2 - Brackets II

no tags 

Peter is preparing slides for his lecture on parsing arithmetic expressions. In the first part of the lecture he wants to focus just on parsing brackets. He invented an interesting geometric representation of a correct bracket sequence for his students, because one image is better than a thousand words:

Formally, the definition of the geometric representation looks as follows. The simplest correct bracket sequence () is represented by a 1 * 1 square. If A is a correct bracket sequence and g(A) its represenation, then the representation for (A) is g(A) surrounded by a rectangle two units wider than g(A) and one unit taller than the highest point of g(A). If A and B are two correct bracket sequences and g(A) and g(B) are their representations, then we get g(AB) by placing g(B) one unit to the right of g(A).

After he finished his slides, Peter started to play with the images he prepared. He painted the bounded areas of the images alternately black and white, in such a way that the outer-most areas are all painted black. For the example above this coloring looks as follows:

Problem specification

You are given a correct bracket sequence. Calculate the area that is colored black.

Input specification

The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.

Each test case consists of one line with a correct bracket sequence with length less than 350000. Every line will only contain characters ( and ).

Output specification

For each test case output one line with one integer – the area of the black part of the corresponding geometric representation.

Example

Input:
2

((()))

(())(()(()))

Output:
10
20

hide comments
Mahesh Chandra Sharma: 2010-06-29 06:34:26

No, any programming language will not allow recursion depth 350000/2

Ehor Nechiporenko: 2009-11-20 18:00:46

Can we use recursive function for this problem? I mean, can stack depth be 350000/2 ?

Mauro Persano: 2009-08-20 13:38:40

Something to be careful about: the solution may not fit in a 32-bit integer!


Added by:Fudan University Problem Setters
Date:2009-05-31
Time limit:2s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:IPSC 2009