码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4349

时间:2014-12-07 17:46:56      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   sp   for   div   log   amp   as   

想了好久,没思路。看别人说是卢卡斯,就去看卢卡斯了,看完卢卡斯,再用它推导一下,很容易就知道,答案是2^n的二进制中一的个数。改天找个时间写个卢卡斯的总结。~~~今晚竟然要上形势政治课,靠。。。。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int main(){
	int n;
	while(scanf("%d",&n)!=EOF){
		int k=0;
		while(n){
			if(n&1) k++;
			n>>=1;
		}
		int ans=1;
		for(int i=1;i<=k;i++)
		ans*=2;
		printf("%d\n",ans);
	}
	return 0;
}

  

HDU 4349

标签:blog   io   os   sp   for   div   log   amp   as   

原文地址:http://www.cnblogs.com/jie-dcai/p/4149575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!