码迷,mamicode.com
首页 > 其他好文 > 详细

URAL 1081 Binary Lexicographic Sequence

时间:2014-07-29 11:50:46      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   2014   div   ar   

 

bubuko.com,布布扣

第13个位置第5个Bit :13>num[4] =>1 第四个bit 13-num[4]=5 :5<num[3] =>0 ,3-1 第三个Bit 5>num[2](3) 5-num[2]=2 ...

#include<stdio.h>

int num[45];

void init()
{
    num[0]=1;
    num[1]=2;
    int k=2;
    while(k<44)
    {
        num[k]=num[k-1]+num[k-2];
        k++;
    }
}

int main(void)
{
    init();
    int n,k;
    while(scanf("%d%d",&n,&k)!=EOF)
    {
        if(k>num[n])
            printf("-1\n");
        else
        {
            while(n)
            {
                if(k>num[n-1])
                {
                    putchar(1);
                    k-=num[n-1];
                }
                else
                    putchar(0);
                n--;
            }
            putchar(\n);
        }
    }
    return 0;
}

 

URAL 1081 Binary Lexicographic Sequence,布布扣,bubuko.com

URAL 1081 Binary Lexicographic Sequence

标签:style   blog   http   color   io   2014   div   ar   

原文地址:http://www.cnblogs.com/woshijishu3/p/3874289.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!