ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【leetcode】1306. Jump Game III

2020-01-04 22:03:45  阅读:364  来源: 互联网

标签:index 1306 inx reach arr next Jump start III


题目如下:

Given an array of non-negative integers arr, you are initially positioned at start index of the array. When you are at index i, you can jump to i + arr[i] or i - arr[i], check if you can reach to any index with value 0.

Notice that you can not jump outside of the array at any time.

Example 1:

Input: arr = [4,2,3,0,3,1,2], start = 5
Output: true
Explanation: 
All possible ways to reach at index 3 with value 0 are: 
index 5 -> index 4 -> index 1 -> index 3 
index 5 -> index 6 -> index 4 -> index 1 -> index 3 

Example 2:

Input: arr = [4,2,3,0,3,1,2], start = 0
Output: true 
Explanation: 
One possible way to reach at index 3 with value 0 is: 
index 0 -> index 4 -> index 1 -> index 3

Example 3:

Input: arr = [3,0,2,1,2], start = 2
Output: false
Explanation: There is no way to reach at index 1 with value 0.

Constraints:

  • 1 <= arr.length <= 5 * 10^4
  • 0 <= arr[i] < arr.length
  • 0 <= start < arr.length

解题思路:DFS。从起点开始,每次把可以到达的位置标记成可达到即可。

代码如下:

class Solution(object):
    def canReach(self, arr, start):
        """
        :type arr: List[int]
        :type start: int
        :rtype: bool
        """
        reach = [0] * len(arr)
        queue = [start]
        reach[start] = 1
        while len(queue) > 0:
            inx = queue.pop(0)
            if arr[inx] == 0 and reach[inx] == 1:
                return True
            next_inx = inx + arr[inx]
            if next_inx >= 0 and next_inx < len(arr) and reach[next_inx] == 0:
                queue.append(next_inx)
                reach[next_inx] = 1
            next_inx = inx - arr[inx]
            if next_inx >= 0 and next_inx < len(arr) and reach[next_inx] == 0:
                queue.append(next_inx)
                reach[next_inx] = 1
        return False

 

标签:index,1306,inx,reach,arr,next,Jump,start,III
来源: https://www.cnblogs.com/seyjs/p/12150551.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有