CF1152B.Neko Performs Cat Furrier Transform

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Cat Furrier Transform is a popular algorithm among cat programmers to create longcats. As one of the greatest cat programmers ever exist, Neko wants to utilize this algorithm to create the perfect longcat.

Assume that we have a cat with a number xx . A perfect longcat is a cat with a number equal 2m12^m - 1 for some non-negative integer mm . For example, the numbers 00 , 11 , 33 , 77 , 1515 and so on are suitable for the perfect longcats.

In the Cat Furrier Transform, the following operations can be performed on xx :

  • (Operation A): you select any non-negative integer nn and replace xx with x(2n1)x \oplus (2^n - 1) , with \oplus being a bitwise XOR operator.
  • (Operation B): replace xx with x+1x + 1 .

The first applied operation must be of type A, the second of type B, the third of type A again, and so on. Formally, if we number operations from one in the order they are executed, then odd-numbered operations must be of type A and the even-numbered operations must be of type B.

Neko wants to produce perfect longcats at industrial scale, thus for each cat Neko only wants to perform at most 4040 operations. Can you help Neko writing a transformation plan?

Note that it is not required to minimize the number of operations. You just need to use no more than 4040 operations.

输入格式

The only line contains a single integer xx ( 1x1061 \le x \le 10^6 ).

输出格式

The first line should contain a single integer tt ( 0t400 \le t \le 40 ) — the number of operations to apply.

Then for each odd-numbered operation print the corresponding number nin_i in it. That is, print t2\lceil \frac{t}{2} \rceil integers nin_i ( 0ni300 \le n_i \le 30 ), denoting the replacement xx with x(2ni1)x \oplus (2^{n_i} - 1) in the corresponding step.

If there are multiple possible answers, you can print any of them. It is possible to show, that there is at least one answer in the constraints of this problem.

输入输出样例

  • 输入#1

    39
    

    输出#1

    4
    5 3 
  • 输入#2

    1
    

    输出#2

    0
    
  • 输入#3

    7
    

    输出#3

    0
    

说明/提示

In the first test, one of the transforms might be as follows: 395657626339 \to 56 \to 57 \to 62 \to 63 . Or more precisely:

  1. Pick n=5n = 5 . xx is transformed into 393139 \oplus 31 , or 5656 .
  2. Increase xx by 11 , changing its value to 5757 .
  3. Pick n=3n = 3 . xx is transformed into 57757 \oplus 7 , or 6262 .
  4. Increase xx by 11 , changing its value to 63=26163 = 2^6 - 1 .

In the second and third test, the number already satisfies the goal requirement.

首页