首页 > 其他 > 详细

P1025 数的划分

时间:2019-11-03 12:19:18      阅读:87      评论:0      收藏:0      [点我收藏+]

P1025 数的划分

技术分享图片

题解

时隔许久打个dfs

为了防止重复,我们划分数字的时候按照升序划分

代码

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<string>
#include<cstring>
#include<queue>
#include<cmath>

using namespace std;
typedef long long ll;

inline int read()
{
    int ans=0;
    char last= ,ch=getchar();
    while(ch<0||ch>9) last=ch,ch=getchar();
    while(ch>=0&&ch<=9) ans=ans*10+ch-0,ch=getchar();
    if(last==-) ans=-ans;
    return ans;
}

int n,m,ans=0;

int dfs(int k,int pre,int res)
{
    int ret=0;
    if(k==m) return res==0;
    if(res<=0) return 0;
    for(int i=pre;(i+m-k-1)<=res;i++){
        ret=ret+dfs(k+1,i,res-i);
    }
    return ret;
}

int main()
{
    n=read();m=read();
    ans=dfs(0,1,n);
    printf("%d\n",ans);
    return 0;
}

 

P1025 数的划分

原文:https://www.cnblogs.com/xiaoyezi-wink/p/11785362.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!