标签:des style os 数据 io for
6
6 Hint 满足条件的数为6,16,26,126,36,136。
//递推公式:当i为奇数时,h(i)=h(i-1);当i为偶数时,h(i)=h(i-1)+h(i/2). #include<stdio.h> int h[1001]; int fun(int n) { int i; h[1]=1; for(i=2;i<=n;i++) { if(i%2==1)h[i]=h[i-1]; else h[i]=h[i-1]+h[i/2]; } return h[n]; } int main() { int n; while(scanf("%d",&n)!=EOF) { printf("%d\n",fun(n)); } return 0; }
数的计数——递推算法,布布扣,bubuko.com
数的计数——递推算法
原文地址:http://blog.csdn.net/u014760201/article/details/37909127