ANARC09A - Seinfeld


I’m out of stories. For years I’ve been writing stories, some rather silly, just to make simple problems look difficult and complex problems look easy. But, alas, not for this one.

You’re given a non empty string made in its entirety from opening and closing braces. Your task is to find the minimum number of “operations” needed to make the string stable. The definition for being stable is as follows:

  1. An empty string is stable.
  2. If S is stable, then {S} is also stable.
  3. If S and T are both stable, then ST (the concatenation of the two) is also stable.

All of these strings are stable: {}, {}{}, and {{}{}}; But none of these: }{, {{}{, nor {}{.
The only operation allowed on the string is to replace an opening brace with a closing brace, or vice-versa.

Input

Your program will be tested on one or more data sets. Each data set is described on a single line. The line is a non-empty string of opening and closing braces and nothing else. No string has more than 2000 braces. All sequences are of even length.

The last line of the input is made of one or more ’-’ (minus signs.)

Output

For each test case, print the following line:

k. N

Where k is the test case number (starting at one,) and N is the minimum number of operations needed to convert the given string into a balanced one.

Example

Input:
}{
{}{}{}
{{{}
---

Output: 1. 2
2. 0
3. 1

hide comments
The Exorcist: 2014-06-10 07:57:47

@robin Nobody cares....

robin: 2014-06-10 04:13:51

this is the fifth problem consecutively that i couldn't solve...:(

Himanshu: 2014-06-08 10:00:10

my 200th spoj ACCEPTED :)

agaurav77: 2014-05-25 16:13:38

Simple Enough O(n) solution. Elegance!!

vishnu: 2014-03-16 19:16:52

Can someone give some more testcases ?

Rishab Kalra: 2014-01-11 13:22:44

my 150th classical :D

Mukit09: 2013-10-20 07:13:05

gets() give WA but scanf() is OK !!! :/

Vishal Sharma: 2013-08-06 16:05:53

for runtime sigsev
1.take size of the string as 2001 so that null character can also be stored.
2.avoid gets

chk: 2013-08-04 18:16:45

good problem :)
in one go with stack :D

Priya: 2013-07-17 19:37:10

will somebody explain y i m getting runtime error(sigsegv)


Added by:Mohammad Kotb
Date:2009-11-28
Time limit:3.236s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 BASH JS-RHINO
Resource:http://www.icpc-anarc.org