记录编号 |
89671 |
评测结果 |
AAAAAAAAAA |
题目名称 |
核电站问题 |
最终得分 |
100 |
用户昵称 |
OIdiot |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2014-03-03 17:23:32 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
#define MAXN 55
#define SpeedUp ios::sync_with_stdio(false)
#define FILE
using namespace std;
int N,M;
long long int F[MAXN];
void init()
{
SpeedUp;
#ifdef FILE
freopen("nucle.in","r",stdin);
freopen("nucle.out","w",stdout);
#endif
memset(F,0,sizeof(F));
cin>>N>>M;
}
void Dp()
{
F[0]=1;
for(int i=1;i<=N;i++)
{
if(i==M)
F[i]=2*F[i-1]-1;
if(i<M)
F[i]=2*F[i-1];
if(i>M)
F[i]=2*F[i-1]-F[i-M-1];
}
}
void work()
{
init();
Dp();
cout<<F[N]<<endl;
}
int main()
{
work();
return 0;
}