leetcode_56 Jump Game III

161 篇文章 0 订阅

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

 

arr = [0,0], start = 0;

arr = [0,3,0,6,3,3,4], start = 6

本题采用BFS,需要注意的是数组中可能不止一个零,而只要能到达其中一个就可以

class Solution {
public:
    bool canReach(vector<int>& arr, int start) {
        int n = arr.size();
        //int index = -1;
        vector<int> index;
        for(int i = 0; i < n; i++)
        {
            if(arr[i] == 0)
            {
                index.push_back(i);
            }
        }
        if(index.empty() || start < 0 || start >=n )
            return false;

        vector<int> visited(n,0);
        queue<int> Q;
        Q.push(start);
        visited[start] = 1;
        while(!Q.empty()){
            int temp = Q.front();
            Q.pop();
            int ways = temp - arr[temp];
            if(0 != count(index.begin(),index.end(),ways))
                return true;
            else if((ways >=0 && ways < n) && !visited[ways])
            {
                Q.push(ways);
                visited[ways] = 1;   
            }
            ways = temp + arr[temp];
            if(0 != count(index.begin(),index.end(),ways))
                return true;
            else if((ways >= 0 && ways < n) && !visited[ways])
            {
                Q.push(ways);
                visited[ways] = 1;
            }
        }
        return false;
    }
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值