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
testing: 2012-06-06 06:58:10

O(n) :D

Last edit: 2012-06-06 07:02:30
:D: 2012-06-06 06:27:41

Read the statement carefully. Is says only even length is allowed.

muhammad ibnu fahmi: 2012-06-06 04:15:39

how if the problem {{{{{{}

patapatapatapon!: 2012-04-09 15:28:27

use scanf instead of gets

manish kapoor: 2012-04-03 08:14:24

hi all !!!
Getting WA,but i think my code works fine for all test cases.Somebody pls give some critical test cases.
submission code : 6776740

Guneesh Paul Singh: 2012-02-10 08:00:01

@admin i was using gets to input the string and was getting tle...changed it to scanf and got accepted with 0.0 sec...
how is that possible!!

DivineAtheist: 2012-01-27 19:02:06

m getting WA with stack..:(

Nitin Sharma: 2011-12-30 14:27:25

o(n) with stack.

Hazem: 2011-12-30 14:27:25

yes o(n) with stack

nagesh: 2011-12-30 14:27:25

Nice Problem..:D


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