22533_TreesMadetoOrder

2022-5-16 18:22| 发布者: Hocassian| 查看: 20| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-5-89506534537799-Problem List-采集的数据-后羿采集器.html

Pro.ID

22533

Title

Trees Made to Order

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=22533

AC

0

Submit

0

Ratio

-

时间&空间限制

  • Time Limit: 1000/500 MS (Java/Others)     Memory Limit: 32768/32768 K (Java/Others)
  • 描述

    We can number binary trees using the following scheme:

    • The empty tree is numbered 0.

    • The single-node tree is numbered 1.

    • All binary trees having m nodes have numbers less than all those having m+1 nodes.

    • Any binary tree having m nodes with left and right subtrees L and R is numbered n such that all trees having m nodes numbered > n have either
      --  Left subtrees numbered higher than L, or
      --  A left subtree = L and a right subtree numbered higher than R.

    The first 10 binary trees and tree number 20 in this sequence are shown below:

    Your job for this problem is to output a binary tree when given its order number.

    输入

    Input consists of multiple problem instances. Each instance consists of a single integer n, where 1 ≤ n ≤ 500,000,000. A value of n = 0 terminates input. (Note that this means you will never have to output the empty tree.)

    输出

    Description

    We can number binary trees using the following scheme:

    • The empty tree is numbered 0.

    • The single-node tree is numbered 1.

    • All binary trees having m nodes have numbers less than all those having m+1 nodes.

    • Any binary tree having m nodes with left and right subtrees L and R is numbered n such that all trees having m nodes numbered > n have either
      --  Left subtrees numbered higher than L, or
      --  A left subtree = L and a right subtree numbered higher than R.

    The first 10 binary trees and tree number 20 in this sequence are shown below:

    Your job for this problem is to output a binary tree when given its order number.

    Input

    Input consists of multiple problem instances. Each instance consists of a single integer n, where 1 ≤ n ≤ 500,000,000. A value of n = 0 terminates input. (Note that this means you will never have to output the empty tree.)

    Output

    For each problem instance, you should output one line containing the tree corresponding to the order number for that instance. To print out the tree, use the following scheme:

    • A tree with no children should be output as X.

    • A tree with left and right subtrees L and R should be output as (L')X(R'), where L' and R' are the representations of L and R.

        --   If L is empty, just output  X(R').
        --   If R is empty, just output  (L')X.

    Sample Input

    1
    20
    31117532
    0

    Sample Output

    X
    ((X)X(X))X
    (X(X(((X(X))X(X))X(X))))X(((X((X)X((X)X)))X)X)

    Source

    样例输入

    1
    20
    31117532
    0

    样例输出

    X
    ((X)X(X))X
    (X(X(((X(X))X(X))X(X))))X(((X((X)X((X)X)))X)X)

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部