首页 > 其他 > 详细

acdream 20140730 D题

时间:2014-07-31 02:32:25      阅读:270      评论:0      收藏:0      [点我收藏+]

今天见识到了“数学上来先打表”............

#include<iostream>
using namespace std;
#include<iomanip>
#define LL long long
/*
int lowbit(int n)
{
    int t,cnt = 1;
    t = n % 2;
    if(t == 1) return 1;
    while(t == 0)
    {
        cnt *= 2;
        n /= 2;
        t = n % 2;
    }
    return cnt;
}
LL d(int n)
{
    LL ans = 0;
    for(int i = 1; i <= n; i++)
        ans += lowbit(i);
    return ans;
}
*/
//经过打表,得f(x) = 2 * f( x / 2) + n / 2 + ( n & 1 )
LL d(int n)
{
    if(n == 1)return 1;
    LL ans = 2 * d(n / 2) + n / 2 + (n & 1);
    return ans;
}
int main()
{
    int n;
    while(cin>>n)
    {
        cout<<d(n)<<endl;
    }
    return 0;
}

 

acdream 20140730 D题,布布扣,bubuko.com

acdream 20140730 D题

原文:http://www.cnblogs.com/imLPT/p/3879689.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!