JZOJ 1292. 公牛和母牛
Posted zjzjzj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JZOJ 1292. 公牛和母牛相关的知识,希望对你有一定的参考价值。
题目
分析
- 递推
- 当1-k f[i]=i+1;
- >k f[i]=f[i-1]+f[i-k-1]
代码
1 #include <cmath> 2 #include <cstdio> 3 #include <cstring> 4 #include <iostream> 5 #include <algorithm> 6 const int MOD = 5000011; 7 using namespace std; 8 int f[100001]; 9 int main(){ 10 int n,k; 11 scanf("%d%d",&n,&k); 12 for (int i=0;i<=n;i++) 13 { 14 if (i<=k) f[i]=i+1; 15 else f[i]=(f[i-1]+f[i-k-1])%MOD; 16 } 17 cout<<f[n]; 18 return 0; 19 }
以上是关于JZOJ 1292. 公牛和母牛的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 299 Bulls and Cows(公牛和母牛)(HashMap)
转载:神奇的 SQL 之 联表细节 → MySQL JOIN 的执行过程
USACO 2019 February Contest Platinum T1: Cow Dating
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段