eolymp
bolt
Try our new interface for solving problems
Problems

Up a Tree

Up a Tree

Anatoly Cheng McDougal is a typical student in many ways. Whenever possible he tries to cut and paste code instead of writing it from scratch. Unavoidably this approach causes him problems. For example, when he first learned about preorder, inorder and postorder traversals of trees, and was given code for a preorder print of a tree (shown on the left below), he simply cut and pasted the code, then moved the print statement to the correct location and renamed the procedure. However, he forgot to rename the procedure calls inside the code, resulting in the defective inorder print and postorder print code shown below. At this point, Anatoly did not behave like a typical student. He actually tested his code! Unfortunately, when the results were not correct, he reverted back to typical student behavior. He panicked and started randomly changing calls in all three procedures, hoping to get things right. Needless to say, the situation became even worse now than when he started. Anatoly’s professor tested the code on a random tree of characters. When she looked at the output of his three print routines, she correctly guessed what had happened. However, instead of going directly to his code, she decided to try to reconstruct Anatoly’s code just by observing the output. In order to do this, she correctly made the following assumptions: \begin{enumerate} \item The output statement in each print routine is in the correct location (for example, between the two recursive calls in the inPrint routine). \item Among the six recursive calls made by the three routines, exactly two calls are to prePrint, exactly two are to inPrint, and exactly two are to postPrint, though potentially in the wrong routines. \end{enumerate} Soon the professor realized that reconstructing Anatoly’s code and the test tree from his output was not a simple task and that the result might be ambiguous. You will have to help her find all possible reconstructions of Anatoly’s code. In addition, for each such reconstruction, you are to find the alphabetically first tree (as described in the output section) giving the observed output. \InputFile The input consists of a single test case. A test case consists of three strings on three separate lines: the observed output of Anatoly’s \textbf{prePrint}, \textbf{inPrint} and \textbf{postPrint} routines (in that order) on some test tree. Each of these strings consists of \textbf{n} uppercase letters (\textbf{4} ≤ \textbf{n} ≤ \textbf{26}), with no repeated letters in any string. The test case is guaranteed to have at least one solution. \OutputFile Display all possible reconstructions for the test case, ordered as described in the last paragraph below. The output for each reconstruction consists of two parts. The first part is a single line and describes the six calls in Anatoly’s routines: first the two (recursive) calls in Anatoly’s \textbf{prePrint} routine, followed by the calls in his \textbf{inPrint} routine, and finally the calls in his \textbf{postPrint} routine. The calls are described by the words \textbf{Pre}, \textbf{In}, and \textbf{Post}, separated by spaces. For example, if Anatoly’s routines were correct, the resulting output of the first part of the reconstruction would be \textbf{Pre Pre In In Post Post}. The second part consists of three lines and describes the first test tree that could have generated the observed outputs. The first line is the \textit{correct} preorder print of the tree, and the second and third lines contain the correct inorder and postorder prints, respectively. The first tree is the one with the alphabetically first preorder print. If there are multiple such trees, the first of these is the one with the alphabetically first inorder print. Every reconstruction is a sequence of 6 tokens chosen from \textbf{Pre}, \textbf{In}, and \textbf{Post}. The ordering of reconstructions is lexicographic with respect to the following ordering of tokens: \textbf{Pre} < \textbf{In} < \textbf{Post}.
Time limit 5 seconds
Memory limit 256 MiB
Input example #1
HFBIGEDCJA
BIGEDCJFAH
BIGEDCJFAH
Output example #1
Pre Post In Post In Pre
HFBJCDEGIA
BIGEDCJFAH
IGEDCJBAFH
Source ACM-ICPC World Finals 2013