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

CF414BMashmokh and ACMDP

时间:2014-08-12 16:34:44      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   div   amp   

无脑搜,加个记忆化。当时只过了这题和A题

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <climits>
#include <string>
#include <iostream>
#include <map>
#include <cstdlib>
#include <list>
#include <set>
#include <queue>
#include <stack>
using namespace std;
int n,k;
int dp[2222][2222];
const int mod= 1e9+7;
int dfs(int x,int pre)
{
    if(~dp[x][pre]) return dp[x][pre];
    if(x==k) return dp[x][pre]=1;
    int ret=0;
    for(int i= 1;i*pre<=n;i++)
        ret+=dfs(x+1,i*pre),ret%=mod;
    return dp[x][pre]=ret;
}
int main()
{
    scanf("%d%d",&n,&k);
    memset(dp,-1,sizeof(dp));
    cout<<dfs(0,1)<<endl;
    return 0;
}

 

CF414BMashmokh and ACMDP,布布扣,bubuko.com

CF414BMashmokh and ACMDP

标签:style   blog   color   os   io   for   div   amp   

原文地址:http://www.cnblogs.com/yigexigua/p/3907171.html

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