TREEORD - Tree _order


Description

A tree is a connected acyclic graph.
A binary tree is a tree for which each node has a left child, a right child, both, or neither, e.g.
    1
   / \
  2   3
 / \   \
4   5   6
There are three common ways to recursively traverse such a tree.
  1. Pre-order: parent, left subtree, right subtree
  2. Post-order: left subtree, right subtree, parent
  3. In-order: left subtree, parent, right subtree
Given pre-order, post-order, and in-order traversals, determine if they can be of the same binary tree.
For example,
1 2 4 5 3 6
4 5 2 6 3 1
4 2 5 1 3 6
are the pre-order, post-order, and in-order traversals of the tree above.
But
1 2 4 5 3 6
4 5 2 6 1 3
4 2 5 1 6 3
cannot be the pre-order, post-order, and in-order traversals of the same binary tree.

Input

The first line is the number of nodes in each traversal, 0 < N <= 8000.
The second line is the N space separated nodes of the pre-order traversal.
The third line is the N space separated nodes of the post-order traversal.
The fourth line is the N space separated nodes of the in-order traversal.
Each traversal is a sequence of the nodes, numbered 1 to N, without repetition.

Output

Print "yes" if all three traversals can be of the same tree, and "no" otherwise.
Input Input
6
1 2 4 5 3 6
4 5 2 6 3 1
4 2 5 1 3 6
6
1 2 4 5 3 6
4 5 2 6 1 3
4 2 5 1 6 3
Output Output
yes
no

hide comments
Amitayush Thakur: 2015-06-18 18:37:54

Remember yes not YES costed me 2 WA's :(

Archit Jain: 2015-01-01 20:15:22

simple recursion

Ashish Tilokani: 2014-08-23 14:52:12

no need of tree construction!

innovolt: 2014-03-20 11:03:03

straightforward........just for practice

Sonu Bansal: 2014-03-17 06:29:49

nice Problem !!!
AC in first attempt :D :D

Bhavik: 2014-03-08 16:05:34

nice one:)


Added by:BYU Admin
Date:2014-02-23
Time limit:0.5s-3s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64