Jump Game 的三种思路 - leetcode 55. Jump Game
Jump Game 是一道有意思的题目。题意很简单,给你一个数组,数组的每个元素表示你能前进的最大步数,最开始时你在第一个元素所在的位置,之后你可以前进,问能不能到达最后一个元素位置。
比如:
A = [2, 3, 1, 1, 4], return true.
一种走法是 0 - 2 - 3 - 4
,还有一种走法是 0 - 1 - 4
O(n ^ 2) 解法
一个很显然,几乎不用动脑的解法。
设置一个布尔数组f
,f[0] === true
表示 index === 0
这个位置能够到达,模拟每个位置的前进,最后判断 f[lastIndex]
的值。
/**
* @param {number[]} nums
* @return {boolean}
*/
var canJump = function(nums) {
var f = [];
f[0] = true;
nums.forEach(function(item, index, array) {
if (f[index]) {
var tmp = Math.min(array.length - 1, index + item)
for (var i = index + 1; i <= tmp; i++)
f[i] = true;
}
});
return f[nums.length - 1] ? false : true;
};
但是返回了无情的TLE,给出了一组TLE的数据,数组长度达到了25000,也就是复杂度达到了O(25000 ^ 2),虽然leetcode数据普遍很弱,但是这组TLE也是让我心服口服。
解法1,跪...
O(nlogn) 解法
方法总比困难多,联想到了树状数组中的染色问题。
我们可以把jump的过程看成是染色,还是从左到右枚举位置,比如枚举到 index=0
位置时,nums[0]=5
,也就是说从 index=0
的位置一直可以走到 index=5
的位置,那么我们可以把1~5这一段进行染色。当枚举到 index=1
时,如何判断能不能走到这一步呢?只需求该点被染色的次数,如果大于0,那么就是能到达,然后从该点向后继续染色,最后判断最后一点有没有被染色即可。复杂度 O(nlongn)
。
/**
* @param {number[]} nums
* @return {boolean}
*/
var sum, n;
function lowbit(x) {
return x & (-x);
}
function update(index, val) {
while (index) {
sum[index] += val;
index -= lowbit(index);
}
}
function getAns(index) {
var ans = 0;
while (index <= n) {
ans += sum[index];
index += lowbit(index);
}
return ans;
}
var canJump = function(nums) {
sum = [];
sum[1] = 1;
n = nums.reduce(function(pre, item, index) {
return Math.max(pre, item + index + 1);
}, 0);
for (var i = 2; i <= n; i++)
sum[i] = 0;
for (var i = 0, len = nums.length; i < len; i++) {
var isPainted = getAns(i + 1); // 是否被染色
if (!isPainted) continue;
update(i + 1 + nums[i], 1);
update(i, -1);
}
return Boolean(getAns(len));
};
O(n) 解法
用树状数组显然大材小用了,树状数组可以求得被染色的次数,但是本题只需要判断是否被染色即可;而且本题每次染色都是一次。
进一步思考,我们枚举每一位时都在判断是否被染色过(从而决定是否能够到达该点且能否继续往前走),假设在某一瞬间,index=m
的位置已经被染色了,那么 index=n (n<=m)
的位置肯定已经被染色过了,我们维护一个最右边被染色的点,如果当前枚举点在该点的左侧,那么当前点已经被染色,否则即可停止遍历(因为右边的点再也不可能被染色到了)。
/**
* @param {number[]} nums
* @return {boolean}
*/
var canJump = function(nums) {
var rightMost = 1;
for (var i = 0, len = nums.length; i < len; i++) {
if (rightMost < i + 1) break;
rightMost = Math.max(rightMost, i + 1 + nums[i]);
}
return rightMost >= len;
};
Jump Game 的三种思路 - leetcode 55. Jump Game的更多相关文章
- Maximal Rectangle [leetcode] 的三种思路
第一种方法是利用DP.时间复杂度是 O(m * m * n) dp(i,j):矩阵中同一行以(i,j)结尾的所有为1的最长子串长度 代码例如以下: int maximalRectangle(vecto ...
- [LeetCode] 55. Jump Game 跳跃游戏
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
- leetcode 55. Jump Game、45. Jump Game II(贪心)
55. Jump Game 第一种方法: 只要找到一个方式可以到达,那当前位置就是可以到达的,所以可以break class Solution { public: bool canJump(vecto ...
- 简谈百度坐标反转至WGS84的三种思路
文章版权由作者李晓晖和博客园共有,若转载请于明显处标明出处:http://www.cnblogs.com/naaoveGIS/ 1.背景 基于百度地图进行数据展示是目前项目中常见场景,但是因为百度地图 ...
- Java中实现十进制数转换为二进制的三种思路
Java中实现十进制数转换为二进制 第一种:除基倒取余法 这是最符合我们平时的数学逻辑思维的,即输入一个十进制数n,每次用n除以2,把余数记下来,再用商去除以2...依次循环,直到商为0结束,把余数倒 ...
- Leetcode 55. Jump Game & 45. Jump Game II
55. Jump Game Description Given an array of non-negative integers, you are initially positioned at t ...
- leetcode 55 Jump Game 三种方法,回溯、动态规划、贪心
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
- [LeetCode] 55. Jump Game 解题思路
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
- LeetCode 55. Jump Game (跳跃游戏)
Given an array of non-negative integers, you are initially positioned at the first index of the arra ...
随机推荐
- oracle 分析函数的使用(1)
LISTAGG(columnName,'拼接符') WITHIN GROUP(ORDER BY clause) --order by 子句决定拼接内容的顺序 LISTAGG(columnName,'' ...
- Access界面基础操作
1. 显示表 2. 条件“或” SELECT 研究生.姓名, 研究生.性别, 研究生.入学分数 FROM 研究生 WHERE (研究生.性别="女" AND 研究生.入学分数< ...
- crontab执行不生效-【问题篇】
背景:shell脚本每隔两分钟从数据库取数据库放到脚本所在目录,做好计划任务发现不生效. 解决:脚本中文件路径问题 测试:在/data/test目录下写的脚本,直接在本目录touch以分钟结尾的文件. ...
- java web 中的servlet讲解
首先,解释一下解释一下什么是servlet?说一说Servlet的生命周期? servlet有良好的生存期的定义,包括加载和实例化.初始化.处理请求以及服务结束.这个生存期由javax.servlet ...
- 如何阻止h5body的滑动
// 禁止 document.body.style.overflow = 'hidden'; function _preventDefault(e) { e.preventDefault(); } w ...
- 继续说一下2016里面的json功能(1)
首先先来测试数据,数据是使用之前的,就 不要在意这些细节了啊~ 借用上一篇的测试数据 ),Chinese int ,Math int) ,),(,),(,),(,null); 然后我们使用这个表里面生 ...
- android switch(String)错误:Cannot switch on a value of type String for source level below 1.7
switch语句的判断条件可以接受int,byte,char,short,不能接受其他类型只有JDK版本1.7以上才可以支持String 设置如下可解决问题:(若没有JDK1.7版,可下载一下安装)菜 ...
- glibc-2.15编译error: linker with -z relro support required
./configure --prefix=/usr/local/glibc-2.15 configure: error: you must configure in a separate build ...
- HDFS的Trash回收站功能
文件的删除和恢复 和Linux系统的回收站设计一样,HDFS会为每一个用户创建一个回收站目录:/user/用户名/.Trash/,每一个被用户通过Shell删除的文件/目录,在系统回收站中都一个周期, ...
- mysql级联更新
MySQL 各种级联查询后更新(update select). CREATE TABLE `tb1` ( `id` int(11) NOT NULL, `A` varchar(100) defa ...