题库练习 Jamie and Binary Sequence (changed after round)
← 上一题 下一题 →

A11498 | Jamie and Binary Sequence (changed after round)

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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$ $(a_{1},a_{2},...,a_{k})$ with ![](/uploads/luogu/CF916B/804a330680fa0a689680c55396d7d651c977b163_f2557d31ff16.png). Give a value ![](/uploads/acgo/image/04af74b5e2f6cca0_34e787e0e5d1.jpeg) 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.

输入格式

The first line consists of two integers $n$ and $k$ ( $1<=n<=10^{18},1<=k<=10^{5})$ — the required sum and the length of the sequence.

输出格式

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 $[-10^{18},10^{18}]$ .

输入输出样例

输入 #1
23 5
输出 #1
Yes
3 3 2 1 0 
输入 #2
13 2
输出 #2
No
输入 #3
1 2
输出 #3
Yes
-1 -1 
C++ 编辑器
输入
输出