博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2019.2.14 t2 程序调试
阅读量:6588 次
发布时间:2019-06-24

本文共 759 字,大约阅读时间需要 2 分钟。

代码:

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 9 #define LL long long10 #define res register int11 12 const int N=100000+5,mod=1e9+7;13 int f[N],n,k;14 15 int main()16 {17 freopen("debug.in","r",stdin);18 freopen("debug.out","w",stdout);19 scanf("%lld %lld",&n,&k);20 f[0]=1;21 for(res i=1 ; i<=n ; i++)22 {23 f[i]=f[i-1];24 if(i>=k) f[i]=(f[i]+f[i-k])%mod;25 else f[i]=(f[i]+1)%mod;26 }27 if(n-2k+1<0) ans=(f[n-k]-1)%mod;28 int ans=(f[n-k]+(LL)k*f[n-2*k+1]%mod-1)%mod;29 printf("%d\n",ans);30 return 0;31 }
View Code

 

转载于:https://www.cnblogs.com/wmq12138/p/10380914.html

你可能感兴趣的文章
46、练习:输出指定目录下的所有文件名称
查看>>
IP地址与数字地址相互转换
查看>>
.net core 允许跨域
查看>>
Knockout.Js官网学习(创建自定义绑定)
查看>>
win10 x64中 windbg x64 安装配置符号库
查看>>
python 抽象类、抽象方法、接口、依赖注入、SOLIP
查看>>
echarts 报错问题 is null 或者未定义等问题
查看>>
笔记1
查看>>
POJ1068 Parencodings 解题报告
查看>>
字符串连接[不用库函数]
查看>>
使用Hystrix实现自动降级与依赖隔离-微服务
查看>>
Parcelbale接口
查看>>
新建一个express工程,node app无反应
查看>>
Python去掉字符串中空格的方法
查看>>
分享一个自己写的基于TP的关系模型(2)
查看>>
[转] 用GDB调试程序(五)
查看>>
OCM_第十一天课程:Section5 —》数据仓库
查看>>
来自一个用户的体验-Alpha项目测试
查看>>
水晶报表
查看>>
[转载]测试程序执行时间
查看>>