The Problem
问题

Consider the following algorithm:
考虑下面的算法:

1
2
3
4
5
6
input n
print n
if n = 1 then stop
    if n is odd then n <- 3n + 1
    else n <- n / 2
goto 2

Given the input 22, the following sequence of numbers will be printed 22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1.
给定输入22,接下来会打印出的的数列是:22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1。

It is conjectured that the algorithm above will terminate (when a 1 is printed) for any integral input value. Despite the simplicity of the algorithm, it is unknown whether this conjecture is true. It has been verified, however, for all integers n such that 0 < n < 1,000,000 (and, in fact, for many more numbers than this.)
猜想输入任何整输算法都会最终停止(到打印出1为止)。尽管算法很简单,但这个猜想是否正确仍不得而知。然而经过验证,算法对于0 < n < 1,000,000的所有整除n都成立(事实上还验证过更多的数)。

Given an input n, it is possible to determine the number of numbers printed (including the 1). For a given n this is called the cycle-length of n. In the example above, the cycle length of 22 is 16.
对于给定的一个输入n,算法能够打印出数字(包括1)的数量是可以确定的。对于给定的n,这个数量称作n的“周期长度”。在上面的例子中,22的周期长度为16。

For any two numbers i and j you are to determine the maximum cycle length over all numbers between i and j.
给定任意的两个数i和j,你要确定在[i, j]的范围内的所有数中,最长的周期长度是多少。

The Input
输入

The input will consist of a series of pairs of integers i and j, one pair of integers per line. All integers will be less than 1,000,000 and greater than 0.
输入一系列的整数对i和j,每一对整除独占一行。所有整除都小于1,000,000且大于0。

You should process all pairs of integers and for each pair determine the maximum cycle length over all integers between and including i and j.
你要处理所有的整除对,并确定每对整除所限定范围内(含)的所有整数的最大周期长度。

You can assume that no operation overflows a 32-bit integer.
你可以假设不计算中不会出现32位整数的溢出错误。

The Output
输入

For each pair of input integers i and j you should output i, j, and the maximum cycle length for integers between and including i and j. These three numbers should be separated by at least one space with all three numbers on one line and with one line of output for each line of input. The integers i and j must appear in the output in the same order in which they appeared in the input and should be followed by the maximum cycle length (on the same line).
对输入的每一对i和j应该输出i、j和[i, j]范围内的最大周期长度。这3个数字之间各由至少1个空格隔开,并在每一行输入之后,将这3个输全部输出在下一行内。输出整数i和j时必须按照他们在输入时的顺序输入,后面跟着输出最大周期长度(在同一行)。

Sample Input
输入示例

1 10
100 200
201 210
900 1000

Sample Output
输出示例

1 10 20
100 200 125
201 210 89
900 1000 174

分析:这个题目提交了几次,前面都是WA,后来网上分析i和j的大小可能不同,于是再加上一个判断即可,还有因为数据比较大的时候注意时间,尽量优化程序....

 #include "iostream"
using namespace std;
unsigned int judge(int n);
int main(void)
{
int i,i1;
int j,j1;
//int len;
//int temp1;
unsigned int temp2;
int m=;
unsigned int result;
while((scanf("%d %d",&i,&j))!=EOF)
{
if(i>j)
{
i1=j;
j1=i;
}
else
{
i1=i;
j1=j;
}
//len=i1-j1+1;
//temp1=i1;
temp2=judge(i1);
for(m=i1;m<=j1;m++)
{
result=judge(m);
if(result>temp2)
temp2=result;
} cout<<i<<" "<<j<<" "<<temp2<<endl;
}
return ;
}
unsigned int judge(int n)
{
unsigned int count=;
while(n>)
{
if(n%==)
n=*n+;
else n=n/;//其实这里可以优化为 n=(n%2==1)?(3*n+1):(n/2)
count++;
} return count;
}

杭电acm 1032题的更多相关文章

  1. 杭电acm 1076题

    水题,一个求闰年的题目,复习一下闰年的求法.... 1,如果能被4整除但不能被100整除的是闰年 2,能被400整除的是闰年 题目大意是:给定一个开始年份T以及一个正数N,要求求出从T开始,到了哪一年 ...

  2. 杭电acm 1037题

    本题应该是迄今为止最为简单的一道题,只有一组输入,输出也简单.... /****************************************** 杭电acm 1037题 已AC ***** ...

  3. 杭电acm 1038题

    本题比较简单,但是需要掌握几个小技巧,先上代码 /************************************* 杭电ACM 1038题,已AC ********************* ...

  4. 杭电acm 1049题

    一道水题..... 大意是一条1inch的虫子在一个n inch的盒子的底部,有足够的能够每一分钟往上爬u inch,但是需要休息一分钟,这期间会往下掉d inch,虫子爬到盒子口即认为结束.要求计算 ...

  5. 杭电acm 1033题

    Problem Description For products that are wrapped in small packings it is necessary that the sheet o ...

  6. 杭电ACM刷题(1):1002,A + B Problem II 标签: acmc语言 2017-05-07 15:35 139人阅读 评

    最近忙于考试复习,没有多少可供自己安排的时间,所以我利用复习之余的空闲时间去刷刷杭电acm的题目,也当对自己编程能力的锻炼吧. Problem Description I have a very si ...

  7. 杭电acm刷题顺序

    最近兴趣来了,闲暇之余,回顾大学期间刷过的杭电acm那些入门级别的题,以此巩固基础知识! 以下参考刷题顺序,避免入坑 原文传送门:https://blog.csdn.net/liuqiyao_01/a ...

  8. 杭电acm 1015题

    马上要找工作了,锻炼下自己的写程序能力,不多说,上代码 /********************杭电acm 1015 已AC 在这个程序里,使用穷举法来实现,但是输出顺序需要安装字典的最大 来输出 ...

  9. 杭电acm 1040题

    本题是一个非常简单的升序排序题目,但那时在做的时候把题目看错了,导致花费了大量的时间来检查为什么WA,最后发现题目看错了..... /********************************* ...

随机推荐

  1. Android AbsoluteLayout绝对布局

    绝对布局也叫坐标布局,指定元素的绝对位置,因为适应性很差,一般很少用到.可以使用RelativeLayout替代. 常用属性: android:layout_x --------组件x坐标 andro ...

  2. 每天一个Linux命令(28)df命令

    报告文件系统磁盘空间的使用情况.获取硬盘被占用了多少空间,目前还剩下多少空间等信息.       (1)用法:       用法:  df [选项] [文件]       (2)功能: 功能:  显示 ...

  3. Linuxshell资料汇总

    1.判断文件是否存在 https://www.cnblogs.com/platero/p/4021561.html 2.日期赋值 https://www.cnblogs.com/lonelywolfm ...

  4. runtime-分类为什么不生成setter和getter

    前言 前几天有人问我一个问题:为什么分类不能自动创建get set方法.老实说,笔者从来没有去思考过这个问题.于是这次通过代码实践跟runtime源码来探究这个问题. 准备工作 为了能减少输出类数据的 ...

  5. Linux Glibc库严重安全漏洞修复方案通知(腾讯开发者社区)

    如何查看当前glibc的版本号? rpm -aq | grep glibc 尊敬的用户:       您好!2015年1月28日, 腾讯云安全情报监测到LinuxGlibc库存在一处严重安全漏洞,可以 ...

  6. JS获取内联样式

    JS获取内联样式 //获取内联样式 function getCss(obj,attr){//obj:对象,name:style属性 if(obj.currentStyle) { return obj. ...

  7. AJAX+json+jquery实现预加载瀑布流布局

    宽度是一定的高度不定的瀑布流布局 也可以说是无缝拼图 当浏览器滚动到底部时候自动加载图片 加载的图片地址用json 在img.js里 ,还有正在加载动画是用 css3制作的 在ff等支持css3可以显 ...

  8. jQuery旋转插件jquery.rotate.js 让图片旋转

    演示1 直接旋转一个角度 $('#img1').rotate(45); 演示2 鼠标移动效果 $('#img2').rotate({ bind : { mouseover : function(){ ...

  9. Python 爬虫 —— 网页内容解析(lxml)

    0. xpath 语法 找到所有 <img src=....> 图像的链接: xpath = './/img/@src' img_urls = html.xpath(xpath) @修饰节 ...

  10. BZOJ4976: [Lydsy1708月赛]宝石镶嵌

    BZOJ4976: [Lydsy1708月赛]宝石镶嵌 https://lydsy.com/JudgeOnline/problem.php?id=4976 分析: 本来是从\(k\le 100\)这里 ...