Raising Bacteria

Description
You are a lover of bacteria. You want to raise some bacteria in a box.
Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You hope to see exactly x bacteria in the box at some moment.
What is the minimum number of bacteria you need to put into the box across those days?

Input
The only line containing one integer x (1 ≤ x ≤ 109).

Output
The only line containing one integer: the answer.

Example
Input
5
Output
2
Input
8
Output
1

Note
For the first sample, we can add one bacterium in the box in the first day morning and at the third morning there will be 4 bacteria in the box. Now we put one more resulting 5 in the box. We added 2 bacteria in the process so the answer is 2.
For the second sample, we can put one in the first morning and in the 4-th morning there will be 8 in the box. So the answer is 1.

分析: 这个题看起来难,实际上读懂了之后就是把输入的数据从十进制转换成二进制,输出二进制中1的个数。

AC代码

#include<iostream>
#include<cstdio>
using namespace std;
long long x;
int main()
{
    scanf("%lld",&x);
    int cnt=0;
    while(x)
    {
        if(x%2==0)
            x/=2;
        else
        {
            cnt++;
            x/=2;
        }
    }
    cout<<cnt<<endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/eira_h/article/details/77504787