zoukankan      html  css  js  c++  java
  • hdu 1165 坑爹找规律题

    http://acm.hdu.edu.cn/showproblem.php?pid=1165

    不看题解,使劲找规律,应该是可以找到的,就是费时间!

    Problem Description
    As is known, Ackermann function plays an important role in the sphere of theoretical computer science. However, in the other hand, the dramatic fast increasing pace of the function caused the value of Ackermann function hard to calcuate.

    Ackermann function can be defined recursively as follows:


    Now Eddy Gives you two numbers: m and n, your task is to compute the value of A(m,n) .This is so easy problem,If you slove this problem,you will receive a prize(Eddy will invite you to hdu restaurant to have supper).
     
    Input
    Each line of the input will have two integers, namely m, n, where 0 < m < =3.
    Note that when m<3, n can be any integer less than 1000000, while m=3, the value of n is restricted within 24. 
    Input is terminated by end of file.
     
    Output
    For each value of m,n, print out the value of A(m,n).
     
    Sample Input
    1 3
    2 4
     
    Sample Output
    5
    11
     
    Author
    eddy
     
     
    #include <stdio.h>
    #include <string.h>
    long fun(long m,long n)
    {
        if(n==0)
            return fun(m-1,1);
        else if(m==0)
            return n+1;
        else if(m==1)
            return n+2;
        else if(m==2)
            return 2*n+3;
        else if(m==3)
            return fun(m,n-1)*2+3;
    }
    int main()
    {
        long n,m,i,j;
        while(scanf("%ld%ld",&n,&m)!=EOF)
        {
            //if(n==3)m==24;
            //else m=n;
            printf("%ld
    ",fun(n,m));
        }
        return 0;
    }
  • 相关阅读:
    ZJOI2019爆蛋记
    NOIp2018退役记
    拓展中国剩余定理(exCRT)摘要
    FFT(快速傅里叶变换)摘要
    主席树摘要
    LCT摘要
    替罪羊树摘要
    FHQ Treap摘要
    逻辑回归1-逻辑回归原理详解
    NLP自然语言处理原理及名词介绍
  • 原文地址:https://www.cnblogs.com/ccccnzb/p/3419272.html
Copyright © 2011-2022 走看看