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

学了这么久,来打一次CF看看自己学的怎么样吧

too young too simple

1152B. Neko Performs Cat Furrier Transform

题目链接:"https://codeforces.com/contest/1152/problem/B"

题目描述:

    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 2m−1 for some non-negative integer m. 
    For example, the numbers 0, 1, 3, 7, 15 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 x⊕(2n−1), with ⊕ being a bitwise XOR operator.

    (Operation B): replace x with x+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 40 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 40 operations.

输入:

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

输出:

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

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

样例:

输入

    39

输出

    4
    5 3

输入

    1

输出

    0

输入

    7

输出

    0

提示:

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

    Pick n=5. x is transformed into 39⊕31, or 56.
    Increase x by 1, changing its value to 57.
    Pick n=3. x is transformed into 57⊕7, or 62.
    Increase x by 1, changing its value to 63=26−1.

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

题目大意:

题目思路:

代码如下

#include<bits/stdc++.h>
using namespace std;
int main()
{   
    int x,xx,op=0,j=0,opp=0;
    int ans[50]={0};
    cin>>x;
    while(1)
    {
        xx=x;
        int sum=0,man=0;
        for(int i=0;xx!=1;i++){
            if(xx%2==1)man++;
            xx>>=1;
            sum++;
        }
        
        if(sum==man)break;
        
        xx=x;
        for(int i=0;xx!=1;i++){
            if(xx%2==0)op=i;
            xx>>=1;
        }
        int er=1;
        for(int i=0;i<=op;i++)er*=2;
        x=x^(er-1);
        opp++;
        ans[j++]=op;
        xx=x;
        man=0;
        sum=0;
        for(int i=0;xx!=1;i++){
            if(xx%2==1)man++;
            xx>>=1;
            sum++;
        }
        if(sum==man)break;
        x=x+1;
        opp++;
    }
    printf("%d\n",opp);
    for(int i=0;i<j;i++)printf("%d ",ans[i]+1);
    return 0;
} 

猜你喜欢

转载自www.cnblogs.com/--ChenShou--/p/10778678.html