leetcode403. Frog Jump

3533 단어 leetcode자바dfsbfs
제목 요구
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.

개구리 한 마리 가 강 을 건 너 야 한다 고 가정 하면 강 에 돌 이 있 을 것 이 고 개 구 리 는 돌 을 밟 아야 성공 할 수 있다.돌의 위 치 는 정수 수조 로 표시 한다.개구리 의 걷 기 규칙 은 다음 과 같다. 지난번 에 개구리 가 k 칸 을 뛰 었 다 고 가정 하면 현재 개 구 리 는 k - 1 또는 k 또는 k + 1 칸 만 뛰 고 개 구 리 는 앞으로 만 뛰 며 뒤로 뛰 지 못 한다.
범위 우선
출발점 부터 이 점 에서 출발 할 수 있 는 모든 걸음 수 를 옮 겨 다 니 며 이 점 에서 도달 할 수 있 는 모든 실행 가능 한 걸음 수 를 업데이트 할 수 있 습 니 다.Map> 데이터 구 조 를 이용 하여 이 결 과 를 기록 합 니 다. 그 중에서 map 의 key 는 stone 의 unit 수 이 고 그의 value 는 이 key 에서 출발 한 모든 걸음 의 길이 에 대응 합 니 다.이 사 고 는 넓 은 범위 에서 우선적으로 옮 겨 다 니 는 것 과 유사 하 며, 곧 이 점 에서 출발 하여 모든 도달 점 을 옮 겨 다 닐 것 이다.코드 는 다음 과 같 습 니 다:
    public boolean canCross(int[] stones) {
        if(stones.length < 2) return true;
        if(stones.length == 2 && stones[1] == 1) return true;
        if(stones.length >= 2 && stones[1] != 1) return false;
        Map> stoneJump = new HashMap<>();
        for(int i = 1 ; i());
        }
        stoneJump.get(1).add(1);
        int finalStone = stones[stones.length-1];
        boolean hasNext = false;
        for(int i = 1 ; i

깊이 우선 순위
이전 사고방식 과 의 차 이 는 이런 방법 이 가능 한 한 멀리 옮 겨 다 닌 다 는 것 이다.즉, 이 점 이 다음 점 에 도착 할 수만 있다 면 바로 한 시 에서 종점 에 도착 하려 고 시도 할 것 이다.코드 는 다음 과 같 습 니 다:
    public boolean canCross(int[] stones) {
        for(int i = 1 ; i i) return false;
        }
        return canCross2(stones, 1, 1);
    }
    
    public boolean canCross2(int[] stones, int idx, int lastStep) {
        if(idx == stones.length-1) return true;
        if(idx < 0 || lastStep <= 0) return false;
        for(int jump = lastStep + 1 ; jump >= lastStep -1 ; jump--) {
            if(canCross2(stones, Arrays.binarySearch(stones, stones[idx] + jump), jump)){
                return true;
            }
        }
        return false;
    }

좋은 웹페이지 즐겨찾기