Codeforces Round #596 (Div. 2, based on Technocup 2020 Elimination Round 2) C. p-binary 水題

C. p-binary

Vasya will fancy any number as long as it is an integer power of two. Petya, on the other hand, is very conservative and only likes a single integer p (which may be positive, negative, or zero). To combine their tastes, they invented p-binary numbers of the form 2x+p, where x is a non-negative integer.c++

For example, some −9-binary ("minus nine" binary) numbers are: −8 (minus eight), 7 and 1015 (−8=20−9, 7=24−9, 1015=210−9).優化

The boys now use p-binary numbers to represent everything. They now face a problem: given a positive integer n, what's the smallest number of p-binary numbers (not necessarily distinct) they need to represent n as their sum? It may be possible that representation is impossible altogether. Help them solve this problem.this

For example, if p=0 we can represent 7 as 20+21+22.spa

And if p=−9 we can represent 7 as one number (24−9).code

Note that negative p-binary numbers are allowed to be in the sum (see the Notes section for an example).orm

Input

The only line contains two integers n and p (1≤n≤109, −1000≤p≤1000).get

Output

If it is impossible to represent n as the sum of any number of p-binary numbers, print a single integer −1. Otherwise, print the smallest possible number of summands.input

Examples

input
24 0
output
2it

Note

0-binary numbers are just regular binary powers, thus in the first sample case we can represent 24=(24+0)+(23+0).io

In the second sample case, we can represent 24=(24+1)+(22+1)+(20+1).

In the third sample case, we can represent 24=(24−1)+(22−1)+(22−1)+(22−1). Note that repeated summands are allowed.

In the fourth sample case, we can represent 4=(24−7)+(21−7). Note that the second summand is negative, which is allowed.

In the fifth sample case, no representation is possible.

題意

定義p-binary爲2^x+p

如今給你一個數x,和一個p。

問你最少用多少個p-binary能構造出x,若是沒有輸出-1

題解

轉化爲:

x = 2^x1 + 2^x2 + ... + 2^xn + n*p

首先咱們知道任何數都能用二進制表示,若是p=0的話,確定是有解的。那麼答案最少都是x的2進制1的個數。

另外什麼狀況無解呢,即x-n*p<0的時候確定無解,能夠更加有優化爲x-n*p<n的時候無解。

答案實際上就是n,咱們從小到大枚舉n,而後check如今的2進制中1的個數是否小於等於n。

代碼

#include<bits/stdc++.h>
using namespace std;

int Count(int x){
    int number=0;
    for(;x;x-=x&-x){
        number++;
    }
    return number;
}
int main(){
    int n,p,ans=0;
    scanf("%d%d",&n,&p);
    while(1){
        n-=p;
        ans++;
        int cnt=Count(n);
        if(ans>n){
            cout<<"-1"<<endl;
            return 0;
        }
        if(cnt<=ans){
            cout<<ans<<endl;
            return 0;
        }
    }
}
相關文章
相關標籤/搜索