CodeForces - 916B Jamie and Binary Sequence (changed after round) (思维+模拟)

Jamie and Binary Sequence (changed after round)

Jamie is preparing a Codeforces round. He has got an idea for a problem, but does not know how to solve it. Help him write a solution to the following problem:

Find k integers such that the sum of two to the power of each number equals to the number n and the largest integer in the answer is as small as possible. As there may be multiple answers, you are asked to output the lexicographically largest one.

To be more clear, consider all integer sequence with length k (a1, a2, ..., ak) with . Give a value  to each sequence. Among all sequence(s) that have the minimum y value, output the one that is the lexicographically largest.

For definitions of powers and lexicographical order see notes.

Input

The first line consists of two integers n and k (1 ≤ n ≤ 1018, 1 ≤ k ≤ 105) — the required sum and the length of the sequence.

Output

Output "No" (without quotes) in a single line if there does not exist such sequence. Otherwise, output "Yes" (without quotes) in the first line, and k numbers separated by space in the second line — the required sequence.

It is guaranteed that the integers in the answer sequence fit the range [ - 1018, 1018].

Examples

Input

23 5

Output

Yes
3 3 2 1 0 

Input

13 2

Output

No

Input

1 2

Output

Yes
-1 -1 

Note

Sample 1:

23 + 23 + 22 + 21 + 20 = 8 + 8 + 4 + 2 + 1 = 23

Answers like (3, 3, 2, 0, 1) or (0, 1, 2, 3, 3) are not lexicographically largest.

Answers like (4, 1, 1, 1, 0) do not have the minimum y value.

Sample 2:

It can be shown there does not exist a sequence with length 2.

Sample 3:

Powers of 2:

If x > 0, then 2x = 2·2·2·...·2 (x times).

If x = 0, then 2x = 1.

If x < 0, then .

Lexicographical order:

Given two different sequences of the same length, (a1, a2, ... , ak) and (b1, b2, ... , bk), the first one is smaller than the second one for the lexicographical order, if and only if ai < bi, for the first i where ai and bi differ.

 

题目链接:http://codeforces.com/problemset/problem/916/B

题目大意:现在要把n分解成k个2的幂次相加,输出k个幂次,要求满足其中最高幂次要最小,并且满足字典序最大

思路:先把n化成二进制,此时的个数是最小的,如果此时的个数要大于k的话那就输出No。要满足最高幂次最小,所以把最高位不断降次,如果当前位降次后个数会大于k那就停止降次,现在已经把最高次降到最小了。还要满足字典序最大,所以要从幂次最小的往下拆,直到个数到k为止

代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std;
#define ll long long
ll a[200005];
int main()
{
    ll n,k;
    scanf("%lld%lld",&n,&k);
    ll ans=0,p,q=-1,l=100000;  //因为有负的幂次
    while(n) //化二进制
    {
        if(n&1)
        {
            if(q==-1) q=l; //记录最低位
            p=l; //记录最高位
            a[l++]=1,ans++; //记录个数
        }
        else a[l++]=0;
        n>>=1;
    }
    if(ans>k)  //如果最小的个数都大于k,无法得到
    {
        printf("No\n");
        return 0;
    }
    while(ans<k) 
    {
        if(ans+a[p]<=k)  //如果可以分解最高位
        {
            a[p-1]+=a[p]*2;
            ans=ans+a[p];
            a[p]=0;
            p--;  //最高位-1
            if(p<q) q=p; //更新最低位
        }
        else  //如果最高位不能分解,从最低位分解
        {
            while(ans<k)
            {
                a[q]-=1;
                a[q-1]+=2;
                ans++;
                q--;
            }
        }
    }
    printf("Yes\n");
    for(int i=100100; i>=0; i--)
        if(a[i])
        {
            for(int j=0; j<a[i]; j++)
                printf("%d ",i-100000);
        }
    printf("\n");
    return 0;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值