博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1032 水题也wrong 两次(于是乎更有刷水题的必要了)
阅读量:6564 次
发布时间:2019-06-24

本文共 947 字,大约阅读时间需要 3 分钟。

题意:

      清楚明了。

注意:

       1.For any two numbers i and j you are to determine the maximum cycle length over all numbers between i and j

       并没有说i<j一定成立;

       2.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一定要输入的顺序与输出的顺序一样。

        于是就可以RE了!!!

View Code
#include
int main(){ int n,m; int sum; int max; int i; int t,k; while(scanf("%d %d",&n,&m)!=EOF) { max=1; k=0; if(n>m){k=1;t=m;m=n;n=t;} for(int j=n;j<=m;j++) { i=j; sum=1; while(i!=1) { sum++; if(i%2==0)i/=2; else i=i*3+1; } if(sum>max)max=sum; } if(k==0)printf("%d %d %d\n",n,m,max); else printf("%d %d %d\n",m,n,max); } return 0;}

 

转载于:https://www.cnblogs.com/XDJjy/archive/2013/04/04/2999273.html

你可能感兴趣的文章
Xmemcached发布1.2.6.1(推荐升级)
查看>>
《Spring 5 官方文档》26. JMS(一)
查看>>
《Python Cookbook(第2版)中文版》——1.11 检查一个字符串是文本还是二进制
查看>>
Tkinter之Label
查看>>
Java操作redis
查看>>
PostgreSQL merge json的正确姿势
查看>>
java反射
查看>>
【IOS-COCOS2D游戏开发之二】COCOS2D 游戏开发资源贴(教程以及源码)
查看>>
nodejs安装记录
查看>>
Android2.2 API 中文文档系列(9) —— ZoomButton
查看>>
pcDuino 刷系统-卡刷
查看>>
MySQL结构自动同步工具-schemasync
查看>>
关于在线代码运行网站的一个想法
查看>>
我的友情链接
查看>>
使用subeclipse来管理分支/标记
查看>>
我的友情链接
查看>>
django forms模块使用
查看>>
FreeBSD IPFW 防火墙的安装和设置
查看>>
Linux分区和文件系统 ⑥
查看>>
ClipDrawable--水漫起来的效果
查看>>