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

HDU-2502-月之数

时间:2014-11-30 13:55:17      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   bs   代码   ef   amp   tt   

题目链接

http://acm.hdu.edu.cn/showproblem.php?pid=2502

 

分析:

比如n=4时,有:

1000 1001 1010 1011 1100 1101 1110 1111 可以看到。除了第一位剩下的有 000 001 010 011 100 101 110 111 可以数一下,0和1的总个数一半对一半。于是算一下0和1总个数,除以2就好了。

即为:2^(n-2)*(n-1)  

再加上第一位1总个数:2^(n-1) 得月之数 

即answer = 2^(n-2)*(n-1) + 2^(n-1)

 

代码

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>

int main(void)
{
int t,n;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
printf("%.lf\n",pow(2,n-2)*(n-1)+pow(2,n-1));
}
return 0;
}

HDU-2502-月之数

标签:http   io   ar   sp   bs   代码   ef   amp   tt   

原文地址:http://www.cnblogs.com/liudehao/p/4132937.html

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