Given a non-empty binary tree , let and denote respectively the left child of and the right child of . A binary tree is an AVL tree if and only if is empty, or and are AVL trees such that . These are some examples of AVL trees with respective heights 0, 1, 2, 2, 2, 3 and 3 (a box denotes an empty tree):
We can inductively define a total order over AVL trees as follows: The empty tree is the smallest AVL tree. For every two non-empty AVL trees and , if and only if
, or
and , or
and and .
The trees in the picture above are the first, second, ... , seventh AVL trees using this order.
Write a program such that, for every given AVL tree, computes and prints its rank (that is, its position in the infinite sorted list of AVL trees, starting at 1).
Input begins with the number of cases
,
followed by
strings, each one with the preorder of an AVL tree, with
‘1’ denoting a node and ‘0’ denoting a leaf.
No given tree has height larger than 6.
For every given AVL tree, print its rank.
Input
3 100 110010100 11111100010011000111000100111100010011000
Output
2 6 6736354888