Chapter 6: Q6E (page 192)
Let us define a multiplication operation on three symbols according to the following table; thus , and so on. Notice that the multiplication operation defined by the table is neither associative nor commutative.
Find an efficient algorithm that examines a string of these symbols, say bbbbac, and decides whether or not it is possible to parenthesize the string in such a way that the value of the resulting expression is . For example, on input your algorithm should return yes because.
Short Answer
We are going to use Dynamic Programming approach to examine the string and check if the strings can be parenthesize. In any dynamic programming, first approach is to create a sub-problem and the call it recursively.