1306. Jump Game III

本文介绍了一个数组跳跃游戏的问题,初始位于数组某个位置,目标是到达值为0的任意位置。通过分析给出的例子和约束条件,发现不能使用并查集,而是应该采用递归策略来解决。
摘要由CSDN通过智能技术生成

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

思路:并查集是不对的,因为连接不是双向的。直接用递归即可

class Solution(object):
    def canReach(self, arr, start):
        """
        :type arr: List[int]
        :type start: int
        :rtype: bool
        """
        vis=set()
        def helper(idx):
            if idx<0 or idx>=len(arr): return False
            if idx in vis: return False
            vis.add(idx)
            return arr[idx]==0 or helper(idx-arr[idx]) or helper(idx+arr[idx])
        return helper(start)
    
s=Solution()
print(s.canReach(arr = [4,2,3,0,3,1,2], start = 5))
print(s.canReach(arr = [4,2,3,0,3,1,2], start = 0))
print(s.canReach(arr = [3,0,2,1,2], start = 2))

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值