码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-45

时间:2020-01-31 18:32:38      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:problem   目标   max   while   turn   次数   最小   假设   end   

给定一个非负整数数组,你最初位于数组的第一个位置。

数组中的每个元素代表你在该位置可以跳跃的最大长度。

你的目标是使用最少的跳跃次数到达数组的最后一个位置。

示例:

输入: [2,3,1,1,4]
输出: 2
解释: 跳到最后一个位置的最小跳跃数是 2。
  从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。
说明:

假设你总是可以到达数组的最后一个位置。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/jump-game-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

 

package leetcode;

import java.util.Arrays;

public class Solution45 {

    public int jump(int[] nums) {
        int maxPosition = 0;
        int steps = 0;
        int end = 0;
        for (int i = 0; i < nums.length - 1; i++) {
            maxPosition = Math.max(maxPosition, nums[i] + i);
            if (end == i) {
                steps++;
                end = maxPosition;
            }
        }
        return steps;
    }
}

 

 

第二种

    public static int jump2(int[] nums) {
        int position = nums.length - 1; //要找的位置
        int steps = 0;
        while (position != 0) { //是否到了第 0 个位置
            for (int i = 0; i < position; i++) {
                if (nums[i] >= position - i) {
                    position = i; //更新要找的位置
                    steps++;
                    break;
                }
            }
        }
        return steps;
    }

 

 

end

leetcode-45

标签:problem   目标   max   while   turn   次数   最小   假设   end   

原文地址:https://www.cnblogs.com/CherryTab/p/12246097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!