Editorial for Baltic OI '05 P2 - LISP
Submitting an official solution before solving the problem yourself is a bannable offence.
We get a linear-time algorithm via the following result:
Theorem: If a string can be balanced by choosing suitable values for its magic parentheses ]
, then it can be balanced in a way which chooses ]
.
Proof: Consider the nondeterministic pushdown automaton accepting the correctly parenthesized strings without magic parentheses. Incorporate magic parentheses into it by guessing nondeterministically the correct number of opening parentheses (
to pop whenever a magic parenthesis is read.
Consider any accepting computation
- Before stage
, proceeds exactly as . - Between stages
and (inclusive), proceeds as except that the stack has one more opening parenthesis, and this extra parenthesis cannot cause to reject due to the structure of this automaton. - After stage
, again proceeds exactly as .
The result follows by iterating the argument above until no such stage
The automaton used in the proof yields the required algorithm.
Comments
Here's an alternate proof of the theorem.
Proof: Suppose the string can be balanced by choosing suitable values for its
is a solution.
]
. In other words,Suppose there is some index
where 
. The goal is to decrement 
and increment 
. Take a 
and move it rightwards to 
. There are 2 cases when moving
)
from)
rightwards by 1 character:Swap
)
with)
. This does not change the string.Swap
)
with(
. In other words,)(
becomes()
.Claim: In any balanced string, changing
)(
to()
results in another balanced string. The proof is an exercise. (Hint:)(
is a "decrement, increment" and()
is an "increment, decrement")During every swap, the string remains balanced. Therefore, it's possible to decrement
and increment 
to get another balanced string. Do this repeatedly until 
. QED