#include<stdio.h> int main() { long long int i,j,n,temp,p,t,max; while(scanf("%lld %lld",&i,&j)==2) { if(i>j) { temp=i; i=j; j=temp; } if(i==0&&j==0) break; max=0; for(temp=i;temp<=j;temp++) { t=0; for (n=temp;n!=0;) { if (n%2==1) n=3*n+1; else n=n/2; t++; if(n==1)break; } if(max<t) { p=temp; max=t; } } printf("Between %lld and %lld, %lld generates the longest sequence of %lld values.\n",i,j,p,max); } return 0; }
Wednesday, April 13, 2016
UVA Problem 371: Ackermann Functions- Solution
Unknown
Studying at Shahjalal University of Science and Technology, Sylhet.
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment