博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode Integer Replacement
阅读量:5041 次
发布时间:2019-06-12

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

原题链接在这里:

题目:

Given a positive integer n and you can do operations as follow:

  1. If n is even, replace n with n/2.
  2. If n is odd, you can replace n with either n + 1 or n - 1.

What is the minimum number of replacements needed for n to become 1?

Example 1:

Input:8Output:3Explanation:8 -> 4 -> 2 -> 1

Example 2:

Input:7Output:4Explanation:7 -> 8 -> 4 -> 2 -> 1or7 -> 6 -> 3 -> 2 -> 1

题解:

n是偶数时除以2是确定的,问题是n是奇数时+1 还是 -1. 尽可能的消除1 bit, +1 或 -1后哪个1 bit少就选哪个.

若+1或-1后1 bit相同,那么除了3特殊情况下其他都选+1.

Time Complexity: O(1), int最多32位,最多64次操作.

Space: O(1).

AC Java:

1 public class Solution { 2     public int integerReplacement(int n) { 3         int count = 0; 4         while(n != 1){ 5             if((n & 1) == 0){ 6                 n >>>= 1; 7             }else if(n == 3 || Integer.bitCount(n+1) > Integer.bitCount(n-1)){ 8                 n--; 9             }else{10                 n++;11             }12             count++;13         }14         return count;15     }16 }

除了3特例之外,看n的倒数第二位,若是1, n++, 若是0, n--.

Time Complexity: O(1). Space: O(1).

AC Java:

1 public class Solution { 2     public int integerReplacement(int n) { 3         int count = 0; 4         while(n != 1){ 5             if((n & 1) == 0){ 6                 n >>>= 1; 7             }else if(n == 3 || ((n >>> 1) & 1) == 0){ 8                 n--; 9             }else{10                 n++;11             }12             count++;13         }14         return count;15     }16 }

Reference: s

转载于:https://www.cnblogs.com/Dylan-Java-NYC/p/6273182.html

你可能感兴趣的文章
mysql-1045(28000)错误
查看>>
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
1.jstl c 标签实现判断功能
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
超详细的Guava RateLimiter限流原理解析
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
Swift - RotateView
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
UIActionSheet 修改字体颜色
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
Spring注解之@Lazy注解,源码分析和总结
查看>>
多变量微积分笔记24——空间线积分
查看>>
Magento CE使用Redis的配置过程
查看>>
poi操作oracle数据库导出excel文件
查看>>