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

POJ1664

时间:2016-12-08 09:58:19      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:using   code   style   while   log   names   pac   main   turn   

#include<iostream>
using namespace std;
int solve(int m,int n){
    if(n==1||m==1||n==0)
        return 1;
    if(m<n)     return solve(m,m);
    else        return solve(m,n-1)+solve(m-n,n);
}
int main(){
    int t,m,n;
    cin>>t;
    while(t--){
        cin>>m>>n;
        cout<<solve(m,n)<<endl;
    }
}

 

POJ1664

标签:using   code   style   while   log   names   pac   main   turn   

原文地址:http://www.cnblogs.com/linux0537/p/6143591.html

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