Leetcode 403. Frog Jump

来源:互联网 发布:java高级编程 jb51 编辑:程序博客网 时间:2024/06/06 01:43

问题描述

A frog is crossing a river. The river is divided into x units and at each unit there may or may not exist a stone. The frog can jump on a stone, but it must not jump into the water.

Given a list of stones’ positions (in units) in sorted ascending order, determine if the frog is able to cross the river by landing on the last stone. Initially, the frog is on the first stone and assume the first jump must be 1 unit.

If the frog’s last jump was k units, then its next jump must be either k - 1, k, or k + 1 units. Note that the frog can only jump in the forward direction.

Note:

  • The number of stones is ≥ 2 and is < 1,100.
  • Each stone’s position will be a non-negative integer < 231.
  • The first stone’s position is always 0.

Example 1:

[0,1,3,5,6,8,12,17]There are a total of 8 stones.The first stone at the 0th unit, second stone at the 1st unit,third stone at the 3rd unit, and so on...The last stone at the 17th unit.Return true. The frog can jump to the last stone by jumping 1 unit to the 2nd stone, then 2 units to the 3rd stone, then 2 units to the 4th stone, then 3 units to the 6th stone, 4 units to the 7th stone, and 5 units to the 8th stone.

Example 2:

[0,1,2,3,4,8,9,11]Return false. There is no way to jump to the last stone as the gap between the 5th and 6th stone is too large.

问题分析:首先,青蛙在每个石头上能跳的距离与从上一个石头跳到本石头的距离相关,则必须记录每个石头上可以跳的距离。当前石头可以跳的距离存在两个问题:1、青蛙可以跳到当前石头上,2、青蛙在当前石头上可能跳很多个距离。
用集合记录每个石头上可以跳的距离,同时用数组记录每个石头上可以跳的最远距离,用于判断青蛙可以从哪些石头上跳到当前石头上。
我们用变量k表示当前石头,然后开始遍历剩余的石头,对于遍历到的石头i,我们来找到刚好能跳到i上的石头k,如果i和k的距离大于青蛙在k上的弹跳力+1,则说明青蛙在k上到不了i,则k自增1。我们从k遍历到i,如果青蛙能从中间某个石头上跳到i上,我们更新石头i上的弹跳力和最大弹跳力。这样当循环完成后,我们只要检查最后一个石头上青蛙的最大弹跳力是否大于0即可,代码如下:

    public boolean canCross(int[] stones) {        int n=stones.length;        HashMap<Integer,HashSet<Integer>> map=new HashMap<Integer,HashSet<Integer>>();        int[]dp=new int[n];        map.put(0,new HashSet<Integer>());        map.get(0).add(0);        int k=0;        for(int i=0;i<n;i++){            while(dp[k]+1<stones[i]-stones[k])k++;            for(int j=k;j<i;j++){                int t=stones[i]-stones[j];                if(map.get(j)!=null&&(map.get(j).contains(t-1)||map.get(j).contains(t)||map.get(j).contains(t+1)))                {                    dp[i]=Math.max(dp[i],t);                    if(map.get(i)==null)                        map.put(i,new HashSet<Integer>());                    map.get(i).add(t);                }            }        }        return dp[n-1]>0;    }

参考链接:http://www.cnblogs.com/grandyang/p/5888439.html

原创粉丝点击