博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【leetcode】991. Broken Calculator
阅读量:6085 次
发布时间:2019-06-20

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

题目如下:

On a broken calculator that has a number showing on its display, we can perform two operations:

  • Double: Multiply the number on the display by 2, or;
  • Decrement: Subtract 1 from the number on the display.

Initially, the calculator is displaying the number X.

Return the minimum number of operations needed to display the number Y.

 

Example 1:

Input: X = 2, Y = 3Output: 2Explanation: Use double operation and then decrement operation {2 -> 4 -> 3}.

Example 2:

Input: X = 5, Y = 8Output: 2Explanation: Use decrement and then double {5 -> 4 -> 8}.

Example 3:

Input: X = 3, Y = 10Output: 3Explanation:  Use double, decrement and double {3 -> 6 -> 5 -> 10}.

Example 4:

Input: X = 1024, Y = 1Output: 1023Explanation: Use decrement operations 1023 times.

 

Note:

  1. 1 <= X <= 10^9
  2. 1 <= Y <= 10^9

解题思路:要增加X只能做乘法操作,要减小X只能做减法。如果X>Y的话,那么只需要一直对X做减法操作直到X=Y为止,operation的次数是X-Y;对于X<Y的情况,我们可以由Y的值反推X,即如果Y是偶数,那么令Y=Y/2,如果Y是奇数,令Y=Y-1,直至Y=X为止。

代码如下:

class Solution(object):    def brokenCalc(self, X, Y):        """        :type X: int        :type Y: int        :rtype: int        """        if X >= Y:            return X - Y        res = 0        while Y != X:            res += 1            if Y > X and Y % 2 == 0:                Y = Y / 2            else:                Y = Y + 1        return res

 

转载于:https://www.cnblogs.com/seyjs/p/10365834.html

你可能感兴趣的文章
Hive Streaming 追加 ORC 文件
查看>>
禁用触摸点击事件
查看>>
spring data jpa 创建方法名进行简单查询
查看>>
Hadoop HDFS编程 API入门系列之RPC版本1(八)
查看>>
透视校正插值
查看>>
oracle中如何指定表字段自增
查看>>
Mysql中的算术运算符详解
查看>>
ubuntu svn
查看>>
Hard模式题目
查看>>
那是梦吗
查看>>
调试 ASP 程序脚本
查看>>
第十四篇:获取系统数据文件信息
查看>>
为什么有些语言可以被反编译?而有的不能?
查看>>
JVM 调优
查看>>
最大似然估计
查看>>
如何使用Total Recorder录制软件发出的声音
查看>>
把异步架构延伸到客户端
查看>>
ORACLE数据库表解锁record is locked by another user
查看>>
ImportError: libmysqlclient_r.so.16: cannot open shared object file: No such file or directory
查看>>
Qualcomm 8X camera过程解析【转】
查看>>