首页 > 代码库 > HDU 1032 [The 3n + 1 problem] 暴力模拟
HDU 1032 [The 3n + 1 problem] 暴力模拟
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1032
题目大意:给出i,j,要求输出i j之间“3N+1”的循环次数的最大值。
关键思想:暴力,模拟。可以优化,因为某些大数在进行操作时,会变为已经求过的小数,之后的循环次数已求过。
代码如下:
//between i,j 模拟,暴力 #include <iostream> #include <algorithm> using namespace std; int i,j; int main(){ long long MAX,temp,cnt; while(cin>>i>>j){ MAX=0; int s=min(i,j),l=max(i,j);//输入i可以大于j for(int a=s;a<=l;a++){ cnt=1; temp=a; while(temp>1){ if(temp%2==1){ temp=3*temp+1; temp/=2; cnt+=2; }else{ temp/=2; cnt++; } } MAX=max(cnt,MAX); } cout<<i<<" "<<j<<" "<<MAX<<endl; } return 0; }
HDU 1032 [The 3n + 1 problem] 暴力模拟
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。