leetcode397

 1 class Solution:
 2     def integerReplacement(self, n: int) -> int:
 3         count = 0
 4         while n != 1:
 5             if (n & 1) == 0: # 偶数直接右移
 6                 n >>= 1
 7             else:
 8                 n += -1 if (n & 2) == 0 or n == 3 else 1  # 奇数01或者3减一,其他加1
 9             count += 1
10         return count

算法类型:位运算。数学技巧类型的题目,看一看解答,扩展一下思路。

参考:https://leetcode-cn.com/problems/integer-replacement/solution/wei-yun-suan-by-ma-xing/

猜你喜欢

转载自www.cnblogs.com/asenyang/p/12664753.html