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

luogu 1028

时间:2018-01-24 14:00:14      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:include   scanf   nbsp   std   cst   前缀和   print   return   log   

递推。

f[i]表示把i进行处理可得的数的个数。

枚举头部接什么数可得递推式f[i]=1+∑f[j] (j<=i/2)。

其实可以用前缀和优化,不过这题的数据范围没这个必要。

#include"cstdio"
int main()
{
    int n,f[1001];
    scanf("%d",&n);
    for(int i=1; i<=n; i++)
    {
        f[i]=1;
        for(int j=1; j<=i/2; j++) f[i]+=f[j];
    }
    printf("%d",f[n]);
    return 0;
}

 

luogu 1028

标签:include   scanf   nbsp   std   cst   前缀和   print   return   log   

原文地址:https://www.cnblogs.com/TrassBlose/p/8341093.html

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