CF960D.Full Binary Tree Queries

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a full binary tree having infinite levels.

Each node has an initial value. If a node has value xx , then its left child has value 2x2·x and its right child has value 2x+12·x+1 .

The value of the root is 11 .

You need to answer QQ queries.

There are 33 types of queries:

  1. Cyclically shift the values of all nodes on the same level as node with value XX by KK units. (The values/nodes of any other level are not affected).
  2. Cyclically shift the nodes on the same level as node with value XX by KK units. (The subtrees of these nodes will move along with them).
  3. Print the value of every node encountered on the simple path from the node with value XX to the root.

Positive KK implies right cyclic shift and negative KK implies left cyclic shift.

It is guaranteed that atleast one type 33 query is present.

输入格式

The first line contains a single integer QQ ( 1<=Q<=1051<=Q<=10^{5} ).

Then QQ queries follow, one per line:

  • Queries of type 11 and 22 have the following format: TT XX KK ( 1<=T<=21<=T<=2 ; 1<=X<=10181<=X<=10^{18} ; 0<=K<=10180<=|K|<=10^{18} ), where TT is type of the query.
  • Queries of type 33 have the following format: 33 XX ( 1<=X<=10181<=X<=10^{18} ).

输出格式

For each query of type 33 , print the values of all nodes encountered in descending order.

输入输出样例

  • 输入#1

    5
    3 12
    1 2 1
    3 12
    2 4 -1
    3 8
    

    输出#1

    12 6 3 1 
    12 6 2 1 
    8 4 2 1 
    
  • 输入#2

    5
    3 14
    1 5 -3
    3 14
    1 3 1
    3 14
    

    输出#2

    14 7 3 1 
    14 6 3 1 
    14 6 2 1 
    

说明/提示

Following are the images of the first 44 levels of the tree in the first test case:

Original:

After query 1 2 1:

After query 2 4 -1:

首页