HDU 1032 The 3n + 1 problem

还以为要递归推一推的

结果暴力就过了

要注意 i,j 大小

 #include <iostream>
using namespace std;
int a,b;
long long cnt,n,ans;
int main()
{
while(~scanf("%d%d",&a,&b))
{
ans=;
int p=a,q=b;
if(p>q) swap(p,q);
for(int i=p;i<=q;i++)
{
cnt=;
n=i;
while()
{
cnt++;
if(n==) break;
if(n%) n=*n+;
else n/=;
}
if(cnt>ans) ans=cnt;
}
printf("%d %d %ld\n",a,b,ans);
}
}
//dp[i]=dp[3*i+1]+1;
//dp[i]=dp[i/2]+1;
上一篇:mac外接显示器 双屏同时滑动问题


下一篇:Log4j使用教程 (转载http://www.codeceo.com/article/log4j-usage.html)