PivotOJ

JOGURT

시간 제한: 1000ms메모리 제한: 128MB출처: COCI 2006-2007BOJ 3038

문제

A complete binary tree is made of nodes arranged in a hierarchic structure. One of the nodes is the root node, said to be at level 0. The root node has two child nodes, which are at level 1. Each of those has two children at level 2 etc.

In general, a complete binary tree with N levels has 2N–1 nodes, each of which has two child nodes, except those at level L–1. 

A number can be written into each node. Write the numbers 1 to 2N–1 into a complete binary tree with N levels so that, for each node at level D, the absolute value of the difference of the sum of all numbers in the left subtree and the sum of all numbers in the right subtree is 2D

For example, the sum of the left subtree of the root node must differ from the sum of the right subtree by 1. The sums of the left and right subtrees of a node at level 1 must differ by 2. 

Each number must be used exactly once. The solution need not be unique. 

입력

The first and only line of input contains the integer N (1 ≤ N ≤ 15), the number of levels in the tree. 

 

출력

Output the 2N–1 separated by spaces on a single line, the binary tree in the preorder traversal. The preorder traversal first outputs the number in the root node, then outputs the left subtree (again in the preorder traversal), then the right subtree. 

예제

예제 1

입력
2
출력
3 1 2

예제 2

입력
3
출력
3 1 7 5 6 2 4
이 문제는 채점 준비 중입니다. 테스트 데이터가 확보되면 제출이 가능합니다.