• 2015上海赛区B Binary Tree


    B - Binary Tree
     

    Description

    The Old Frog King lives on the root of an infinite tree. According to the law, each node should connect to exactly two nodes on the next level, forming a full binary tree.

    Since the king is professional in math, he sets a number to each node. Specifically, the root of the tree, where the King lives, is . Say .

    And for each node , labels as , the left child is and right child is . The king looks at his tree kingdom, and feels satisfied.

    Time flies, and the frog king gets sick. According to the old dark magic, there is a way for the king to live for another years, only if he could collect exactly soul gems.

    Initially the king has zero soul gems, and he is now at the root. He will walk down, choosing left or right child to continue. Each time at node , the number at the node is (remember ), he can choose to increase his number of soul gem by , or decrease it by .

    He will walk from the root, visit exactly nodes (including the root), and do the increasement or decreasement as told. If at last the number is , then he will succeed.

    Noting as the soul gem is some kind of magic, the number of soul gems the king has could be negative.

    Given , , help the King find a way to collect exactly soul gems by visiting exactly nodes.

    Input

    First line contains an integer , which indicates the number of test cases.

    Every test case contains two integers and , which indicates soul gems the frog king want to collect and number of nodes he can visit.

    .

    .

    .

    Output

    For every test case, you should output " Case #x:" first, where indicates the case number and counts from .

    Then lines follows, each line is formated as 'a b', where is node label of the node the frog visited, and is either '+' or '-' which means he increases / decreases his number by .

    It's guaranteed that there are at least one solution and if there are more than one solutions, you can output any of them.

    Sample Input

    2
    5 3
    10 4

    Sample Output

    Case #1:
    1 +
    3 -
    7 +
    Case #2:
    1 +
    3 +
    6 -
    12 +
    /*
    想到了贪心没想到二进制优化,贪了几发GG;
    
    完全二叉树左边节点1 2 4 8 ......到k层位置和为2^k-1,但n最大为2^k只需要将叶子向右移一位就可以了
    
    这个不同于二进制构造,减去相当于对总值作用了 2*2^k 所以要减去的和为 d=2^k-1-n,用二进制构造出d然后减去构造d的数,其它数都加上就行了
    */
    
    #include<bits/stdc++.h>
    using namespace std;
    int n,k;
    int vis[65];
    int bit[64];
    int main()
    {
        //freopen("C:\Users\acer\Desktop\in.txt","r",stdin);
        int T;
        int cas =1;
        scanf("%d",&T);
        while(T--)
        {
            memset(vis,0,sizeof vis);
            memset(bit,0,sizeof bit);
            printf("Case #%d:
    ",cas++);
            scanf("%d%d",&n,&k);
            long long d=(1<<k)-1;
            d-=n;
            if(d%2)
                d++;
            d/=2;//需要减去的数字
            for(int i=1;i<64;i++)
            {
                bit[i]=d%2;
                d/=2;
            }
            long long s=0;
            int cur=1;
            for(int i=1;i<k;i++)
            {
                printf("%d ",cur);
                if(bit[i])
                {
                    s-=cur;
                    printf("-
    ");
                }
                else
                {
                    s+=cur;
                    printf("+
    ");
                }
                cur*=2;
            }
            if(s+cur==n)
                printf("%d +
    ",cur);
            else
                printf("%d +
    ",cur+1);
        }
        return 0;
    }
  • 相关阅读:
    IDEA中Maven依赖下载失败解决方案
    Java 泛型 泛型的约束与局限性
    年轻就该多尝试,教你20小时Get一项新技能
    Java入门
    2020全球C++及系统软件技术大会成功落下帷幕
    hashMap底层源码浅析
    hashMap底层源码浅析
    RabbitMQ (二) 简单队列
    RabbitMQ (一) 简介和基本概念
    Linux 关闭/开启密码登录(仅证书登录)
  • 原文地址:https://www.cnblogs.com/wuwangchuxin0924/p/6044884.html
Copyright © 2020-2023  润新知