蓝桥杯 -迷宫+走迷宫模板套路

题目描述

本题为填空题,只需要算出结果后,在代码中使用输出语句将所填结果输出即可。

下图给出了一个迷宫的平面图,其中标记为 11 的为障碍,标记为 00 的为可以通行的地方。

010000
000100
001001
110000

迷宫的入口为左上角,出口为右下角,在迷宫中,只能从一个位置走到这 个它的上、下、左、右四个方向之一。

对于上面的迷宫,从入口开始,可以按 DRRURRDDDR 的顺序通过迷宫, 一共 1010 步。其中 D、U、L、RDULR 分别表示向下、向上、向左、向右走。 对于下面这个更复杂的迷宫(3030 行 5050 列),请找出一种通过迷宫的方式,其使用的步数最少,在步数最少的前提下,请找出字典序最小的一个作为答案。

请注意在字典序中 D<L<R<UD<L<R<U

01010101001011001001010110010110100100001000101010
00001000100000101010010000100000001001100110100101
01111011010010001000001101001011100011000000010000
01000000001010100011010000101000001010101011001011
00011111000000101000010010100010100000101100000000
11001000110101000010101100011010011010101011110111
00011011010101001001001010000001000101001110000000
10100000101000100110101010111110011000010000111010
00111000001010100001100010000001000101001100001001
11000110100001110010001001010101010101010001101000
00010000100100000101001010101110100010101010000101
11100100101001001000010000010101010100100100010100
00000010000000101011001111010001100000101010100011
10101010011100001000011000010110011110110100001000
10101010100001101010100101000010100000111011101001
10000000101100010000101100101101001011100000000100
10101001000000010100100001000100000100011110101001
00101001010101101001010100011010101101110000110101
11001010000100001100000010100101000001000111000010
00001000110000110101101000000100101001001000011101
10100101000101000000001110110010110101101010100001
00101000010000110101010000100010001001000100010101
10100001000110010001000010101001010101011111010010
00000100101000000110010100101001000001000000000010
11010000001001110111001001000011101001011011101000
00000110100010001000100000001000011101000000110011
10101000101000100010001111100010101001010000001000
10000010100101001010110000000100101010001011101000
00111100001000010000000110111000000001000000001011
10000001100111010111010001000110111010101101111000

运行限制

  • 最大运行时间:1s
  • 最大运行内存: 256M

题解

求这种找最短路径并且字典序最小的问题 用bfs即可

本题用的是bfs+路径记录

数据结构使用Queue队列

import java.util.Scanner;
import java.util.*;

public class Main {
    
    
    //输入的迷宫信息
    static char[][] graph = new char[30][50];
    //标记是否已经走过
    static boolean[][] visited = new boolean[30][50];
    //定义起点为(0,0) 终点为(29,49);
    //D(1,0) L(0,-1) R(0,1) U(-1,0)
    static int[] dir_x = {
    
    1,0,0,-1};
    static int[] dir_y = {
    
    0,-1,1,0};
    static String[] str = {
    
    "D","L","R","U"};
    public static void main(String[] args) {
    
    
        Scanner scan = new Scanner(System.in);
        //读入数据 一行行读 转字符数组
        for(int i = 0; i < 30; i++){
    
    
          graph[i] = scan.nextLine().toCharArray();
        }
        bfs();
        scan.close();
    }
    //广度优先遍历 按照字典序 先找到的就是最短的且最小的
    public static void bfs() {
    
    
      //使用队列进行遍历
      Queue<Node> que = new LinkedList<>();
      que.offer(new Node(0,0,""));
      visited[0][0] = true;
      while(!que.isEmpty()){
    
    
        //获取队首结点
        Node node = que.poll();
        if(node.x == 29 && node.y == 49){
    
    
          System.out.println(node.path);
          return;
        }
        for(int i = 0; i < 4; i++){
    
    
          int x = node.x + dir_x[i];
          int y = node.y + dir_y[i];
          if(x >= 0 && x <= 29 && y >= 0 && y <= 49 && !visited[x][y] && graph[x][y] == '0'){
    
    
            visited[x][y] = true;
            que.offer(new Node(x,y,node.path + str[i]));
          }
        }
      }
    }
}
//迷宫结点,记录当前位置以及沿途路径
class Node{
    
    
  int x,y;
  String path;
  public Node(int x, int y, String path){
    
    
    this.x = x;
    this.y = y;
    this.path = path;
  }
}

上面需要记录路径

当只需要求最短路径的长度时,可以简化为下面走迷宫问题

题目描述

给定一个 N\times MN×M 的网格迷宫 GG。GG 的每个格子要么是道路,要么是障碍物(道路用 11 表示,障碍物用 00 表示)。

已知迷宫的入口位置为 (x_1,y_1)(x1,y1),出口位置为 (x_2 , y_2)(x2,y2)。问从入口走到出口,最少要走多少个格子。

输入描述

输入第 11 行包含两个正整数 N,MN,M,分别表示迷宫的大小。

接下来输入一个 N\times MN×M 的矩阵。若 G_{i,j}=1G**i,j=1 表示其为道路,否则表示其为障碍物。

最后一行输入四个整数 x_1,y_1,x_2,y_2x1,y1,x2,y2,表示入口的位置和出口的位置。

1\leq N,M\leq10^21≤N,M≤102,0\leq G_{i,j}\leq 10≤G**i,j≤1,1\leq x_1,x_2\leq N1≤x1,x2≤N,1\leq y_1,y_2\leq M1≤y1,y2≤M

输出描述

输出仅一行,包含一个整数表示答案。

若无法从入口到出口,则输出 -1−1。

输入输出样例

示例 1

输入

5 5 
1 0 1 1 0
1 1 0 1 1 
0 1 0 1 1
1 1 1 1 1
1 0 0 0 1
1 1 5 5 

输出

8

运行限制

  • 最大运行时间:1s
  • 最大运行内存: 128M
import java.util.Scanner;
import java.util.*;
// 1:无需package
// 2: 类名必须Main, 不可修改

public class Main {
    
    
    static int[] dir_x = {
    
    1,0,0,-1};
    static int[] dir_y = {
    
    0,-1,1,0};
    public static void main(String[] args) {
    
    
        Scanner scan = new Scanner(System.in);
        //使用广度优先遍历 最先找到的就是最短的
        int N = scan.nextInt();
        int M = scan.nextInt();
        int[][] matrix = new int[N][M]; //记录迷宫信息
        boolean[][] visited = new boolean[N][M]; //判断是否以及走过
        //读入信息
        for(int i = 0; i < N; i++){
    
    
          for(int j = 0; j < M; j++){
    
    
            matrix[i][j] = scan.nextInt();
          }
        }
        int x1 = scan.nextInt() - 1;
        int y1 = scan.nextInt() - 1;
        int x2 = scan.nextInt() - 1;
        int y2 = scan.nextInt() - 1;
        //bfs遍历
        Queue<Node> que = new LinkedList<>();
        que.offer(new Node(x1,y1,0));
        visited[x1][y1] = true;
        while(!que.isEmpty()){
    
    
          Node node = que.poll();
          if(node.x == x2 && node.y == y2){
    
    
            System.out.println(node.step);
            return;
          }
          //四个方向
          for(int i = 0; i < 4; i++){
    
    
            int x = node.x + dir_x[i];
            int y = node.y + dir_y[i];
            if(x >= 0 && x < N && y >= 0 && y < M && !visited[x][y] && matrix[x][y] == 1){
    
    
              visited[x][y] = true;
              que.offer(new Node(x,y,node.step+1));
            }
          }
        }
        System.out.println(-1);
        scan.close();
    }
}

//迷宫结点,记录当前位置以及沿途路径
class Node{
    
    
  int x,y;
  int step;
  public Node(int x, int y, int step){
    
    
    this.x = x;
    this.y = y;
    this.step = step;
  }
}

猜你喜欢

转载自blog.csdn.net/weixin_51712663/article/details/127133429