zoukankan      html  css  js  c++  java
  • CodeForces

    A. Raising Bacteria
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    Examples
    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.

    题目大意:问要某一天的时候盒子里的细菌数量为n,需要你放入最少多少个细菌。(细菌每天一分为二)

    解题思路:将n分解为多个2的几次幂相加,幂数尽量大。直接找就行。。

    #include<cstdio>
    #include<cmath>
    #include<algorithm>
    using namespace std;
    const int maxn=32;
    int a[maxn];
    
    void Init()
    {
        a[0]=1;
        for(int i=1;i<=30;i++)
            a[i] = a[i-1]*2;
    }
    
    int main()
    {
        int n;
        Init();
        while(scanf("%d",&n)!=EOF)
        {
            int num=0;
            int k;
            for(k=0;k<30;)
            {
                if(a[k]<=n&&a[k+1]>n)
                {
                    //printf("%d %d
    ",a[k],a[k+1]);
                    num++;
                    n -= a[k];
                    if(n==0)
                    {
                        break;
                    }
                    else
                    {
                        k=0;
                    }
                }
                else
                    k++;
            }
            printf("%d
    ",num);
        }
    }
  • 相关阅读:
    CF 561 div2 C
    CF #560 div3
    1.11 acm结束了,所以寒假学习Java基础
    11.5 cometoj #12 -- D XOR Pair (数位dp)
    11 .3 数位dp
    10.1 叉积 ,极角排序,扫描法求凸包
    9.11 状态矩阵 与 dp
    9.3 整理一下最短路算法
    9.3 欧拉定理 && 欧拉降幂 (扩展欧拉定理)&& 指数循环节
    Two Arithmetic Progressions (exgcd的一些注意事项
  • 原文地址:https://www.cnblogs.com/WWkkk/p/7418155.html
Copyright © 2011-2022 走看看