摘要:題目鏈接和上一題不一樣的是這道題要求最短的路徑,普通的遍歷和都是可以做的,但是求最短路徑的話還是用。這里相當(dāng)于每個點有至多條相連,每條的就是到墻之前的長度。
490. The Maze
題目鏈接:https://leetcode.com/problems...
又是圖的遍歷問題,就是簡單的遍歷,所以dfs和bfs都可以做,復(fù)雜度也是一樣的。這道題要求球不能停下來,即使碰到destination,必須是碰到wall才能停下來。
public class Solution { public boolean hasPath(int[][] maze, int[] start, int[] destination) { if(maze.length == 0 || maze[0].length == 0) return false; if(start[0] == destination[0] && start[1] == destination[1]) return true; m = maze.length; n = maze[0].length; boolean[][] visited = new boolean[m][n]; return dfs(maze, start, destination, visited); } int m, n; int[][] dirs = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}}; private boolean dfs(int[][] maze, int[] cur, int[] dest, boolean[][] visited) { // already visited if(visited[cur[0]][cur[1]]) return false; // reach destination if(Arrays.equals(cur, dest)) return true; visited[cur[0]][cur[1]] = true; for(int[] dir : dirs) { int nx = cur[0], ny = cur[1]; while(notWall(nx + dir[0], ny + dir[1]) && maze[nx+dir[0]][ny+dir[1]] != 1) { nx += dir[0]; ny += dir[1]; } if(dfs(maze, new int[] {nx, ny}, dest, visited)) return true; } return false; } private boolean notWall(int x, int y) { return x >= 0 && x < m && y >= 0 && y < n; } }505. The Maze II
題目鏈接:https://leetcode.com/problems...
和上一題不一樣的是:這道題要求最短的路徑,普通的遍歷dfs和bfs都是可以做的,但是求最短路徑的話還是用Dijksra。這里相當(dāng)于每個點有至多4條edge相連,每條edge的weight就是到墻之前的長度。
public class Solution { public int shortestDistance(int[][] maze, int[] start, int[] destination) { // base case if(Arrays.equals(start, destination)) return 0; m = maze.length; n = maze[0].length; return shortestPath(maze, start, destination); } int m, n; int[][] dirs = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}}; private int shortestPath(int[][] maze, int[] start, int[] destination) { // get the vertice has the minimum distance to start PriorityQueueminHeap = new PriorityQueue<>((a, b) -> a.distance - b.distance); minHeap.offer(new Node(start[0], start[1], 0)); // map that contains information of node: distance to start point int[][] visited = new int[m][n]; for(int[] arr : visited) Arrays.fill(arr, Integer.MAX_VALUE); while(!minHeap.isEmpty()) { Node cur = minHeap.poll(); // find the shortest path if(cur.x == destination[0] && cur.y == destination[1]) return cur.distance; for(int[] dir : dirs) { int nx = cur.x, ny = cur.y; while(isInMaze(nx + dir[0], ny + dir[1]) && maze[nx + dir[0]][ny + dir[1]] != 1) { nx += dir[0]; ny += dir[1]; } int distance = cur.distance + Math.abs(nx - cur.x) + Math.abs(ny - cur.y); if(visited[nx][ny] > distance) { minHeap.offer(new Node(nx, ny, distance)); visited[nx][ny] = distance; } } } return -1; } private boolean isInMaze(int x, int y) { return x >= 0 && x < m && y >= 0 && y < n; } class Node { int x; int y; // distance to start point int distance; Node(int x, int y, int distance) { this.x = x; this.y = y; this.distance = distance; } } }
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/66651.html
Problem There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it wont stop rolling until hitting a wall. When the ball sto...
摘要:題目鏈接一般這種題,給一個起點,給一個終點,最后要求最短的路徑,都是用來解。的圖不是很大,也能。 The Maze II 題目鏈接:https://leetcode.com/contest/...一般這種題,給一個起點,給一個終點,最后要求最短的路徑,都是用bfs來解。 public class Solution { public String findShortestWay(...
摘要:整個思路十分簡單首先我們將迷宮視為一個行列的單元格組合,每一個單元格便可以表示為。用來儲存我們已訪問過的單元格,則記錄我們的訪問路徑。我們通過將單元格的,,,屬性設(shè)置為或來標識這個方向是否應(yīng)該有邊框,同時該方向是否可走。 這個系列分為兩部分,第一部分為迷宮的生成及操作,第二部分為自動尋路算法。 我們先看效果:點擊查看 我們直入正題,先說一說生成迷宮的思路。 整個思路十分簡單: 首先...
摘要:整個思路十分簡單首先我們將迷宮視為一個行列的單元格組合,每一個單元格便可以表示為。用來儲存我們已訪問過的單元格,則記錄我們的訪問路徑。我們通過將單元格的,,,屬性設(shè)置為或來標識這個方向是否應(yīng)該有邊框,同時該方向是否可走。 這個系列分為兩部分,第一部分為迷宮的生成及操作,第二部分為自動尋路算法。 我們先看效果:點擊查看 我們直入正題,先說一說生成迷宮的思路。 整個思路十分簡單: 首先...
閱讀 6912·2021-09-22 15:08
閱讀 1920·2021-08-24 10:03
閱讀 2437·2021-08-20 09:36
閱讀 1315·2020-12-03 17:22
閱讀 2474·2019-08-30 15:55
閱讀 905·2019-08-29 16:13
閱讀 3053·2019-08-29 12:41
閱讀 3249·2019-08-26 12:12