B. Neko Performs Cat Furrier Transform Codeforces Round #554 (Div. 2)

B. Neko Performs Cat Furrier Transform

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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 ?x. A perfect longcat is a cat with a number equal 2?−12m−1 for some non-negative integer ?m. 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 ?x:

  • (Operation A): you select any non-negative integer ?n and replace ?x with ?⊕(2?−1)x⊕(2n−1), with ⊕⊕ being a bitwise XOR operator.
  • (Operation B): replace ?x with ?+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.

Input

The only line contains a single integer ?x (1≤?≤1061≤x≤106).

Output

The first line should contain a single integer ?t (0≤?≤400≤t≤40) — the number of operations to apply.

Then for each odd-numbered operation print the corresponding number ??ni in it. That is, print ⌈?2⌉⌈t2⌉ integers ??ni (0≤??≤300≤ni≤30), denoting the replacement ?x with ?⊕(2??−1)x⊕(2ni−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.

Examples

input

Copy

39

output

Copy

4
5 3 

input

Copy

1

output

Copy

0

input

Copy

7

output

Copy

0

Note

In the first test, one of the transforms might be as follows: 39→56→57→62→6339→56→57→62→63. Or more precisely:

  1. Pick ?=5n=5. ?x is transformed into 39⊕3139⊕31, or 5656. 
  2. Increase ?x by 11, changing its value to 5757. 
  3. Pick ?=3n=3. ?x is transformed into 57⊕757⊕7, or 6262. 
  4. Increase ?x by 11, changing its value to 63=26−163=26−1. 

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

 

按着题目意思模拟一下便知道,把相应二进制最高位的零位来xor,所得到的解为最优解,代码如下:

#include <cstdio>
#include <cstring>
#include <vector>
#include <iostream>
#include <sstream>
#include <queue>
#include <math.h>
#include <algorithm>
using namespace std;
int bit[32];
int cnt=0;
void addone()
{
    int ans=1;
    for(int i=0;i<cnt;i++)
    {
        if(ans+bit[i]==2)
        {
            bit[i]=0;
        }
        else
        {
            bit[i]=1;
            break;
        }
    }
}
bool check()
{
    for(int i=0;i<cnt;i++)
    {
        if(bit[i]==0)
            return false;
    }
    return true;
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        memset(bit, 0, sizeof(bit));
        int tmp = n;
        cnt=0;
        vector<int> q;
        while(tmp)
        {
            if(tmp%2==0)
                bit[cnt++]=0;
            else bit[cnt++]=1;
            tmp=tmp/2;
        }
        int ans=0;
        for(int i=cnt-1;i>=0;i--)
        {
            if(bit[i]==0)
            {
                ans++;
                q.push_back(i+1);
                for(int j=i;j>=0;j--)
                {
                    //printf("j=%d bit[j]=%d\n",j,bit[j]);
                    if(bit[j]==1)
                        bit[j]=0;
                    else bit[j]=1;
                }
                if(check())
                    break;
                else
                {
                    addone();
                    ans++;
                }
                
            }
        }
        printf("%d\n",ans);
        if(q.size()!=0)
        {
            for(int i=0;i<q.size();i++)
            {
                printf("%d ",q[i]);
            }
            printf("\n");
        }
        
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值