codevs 1039 数的划分 x
Posted 云深不知处
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codevs 1039 数的划分 x相关的知识,希望对你有一定的参考价值。
1039 数的划分
2001年NOIP全国联赛提高组
时间限制: 1 s
空间限制: 128000 KB
题目等级 : 黄金 Gold
1 #include<iostream> 2 #include<cstdio> 3 4 using namespace std; 5 6 int g=0,n,k; 7 8 void sou(int x,int y,int z) 9 { 10 if(y==1&&x<z) return ; 11 if(y==1&&x>=z) { 12 g++; 13 return ; 14 } 15 int i; 16 for(i=z; i<=x; i++) { 17 //if(i-z>=z) 18 sou(x-i,y-1,i); 19 } 20 } 21 int main() 22 { 23 cin>>n>>k; 24 sou(n,k,1); 25 cout<<g; 26 return 0; 27 }
以上是关于codevs 1039 数的划分 x的主要内容,如果未能解决你的问题,请参考以下文章