日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hdu 1165 坑爹找规律题

發布時間:2024/7/19 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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\n",fun(n,m));}return 0; }

?

轉載于:https://www.cnblogs.com/ccccnzb/p/3419272.html

總結

以上是生活随笔為你收集整理的hdu 1165 坑爹找规律题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。