leetcode [397] 整数替换
Contact me:
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
给定一个正整数 n,你可以做如下操作:
- 如果 n 是偶数,则用 n / 2替换 n。
- 如果 n 是奇数,则可以用 n + 1或n - 1替换 n。 n 变为 1 所需的最小替换次数是多少?
示例 1:
输入:
8
输出:
3
解释:
8 -> 4 -> 2 -> 1
示例 2:
输入:
7
输出:
4
解释:
7 -> 8 -> 4 -> 2 -> 1
或
7 -> 6 -> 3 -> 2 -> 1
class Solution:
def integerReplacement(self, n: int) -> int:
if n in [0, 2]:
return 1
if n == 1:
return 0
count = 0
while n % 2 == 0:
n = n // 2
count += 1
if n == 1:
return count
t1 = self.integerReplacement(n - 1) + count + 1
t2 = self.integerReplacement(n + 1) + count + 1
return min(t1, t2)