蓝桥杯之迷宫

发布时间 2023-03-22 21:15:44作者: K_Jx

蓝桥杯题解

迷宫

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

010000
000100
001001
110000

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

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

请注意在字典序中 D<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

题解

该题使用广度优先(bfs)即可,首先创建一个构造器用于储存搜索的路径

static class Node{//用于储存到(x,y)的路径str,当最小的路径结束,即为此路径
int x;
int y;
String str;
public Node(int x , int y ,String str){
this.x =x;
this.y =y;
this.str = str;
}
}

设置全局变量,用于存储迷宫和访问路径

static char[][] graph = new char[30][50];//用于存储迷宫
static char[] path = {'D','L','R','U'};
static int[] h = {1,0,0,-1};
static int[] l = {0,-1,1,0};//分别为(1,0)(0,-1)(0,1)(-1,0)表示下,左,右,上
static int[][] visited = new int[30][50];//由于储存是否遍历到

最关键的在于bfs的代码理解,每次出队的构造器为最先进队的,可用进行广度优先的搜索,但是每次的路径都保留在对应的构造器内,因此str1是(x,y)的路径。

   while(!queue.isEmpty()){//队列非空
             Node  t = queue.poll();//出队,为最先进队的位置
             int x1 = t.x;
             int y1 = t.y;
             String str1 = t.str;//str1为到(x,y)位置的路径
             if(x1==29&&y1==49){//当达到终点
                 shunxv = str1;
                 break;
             }
             for(int i=0;i<4;i++){//按字典序列广度搜索
                 int x2= x1+h[i];
                 int y2= y1+l[i];
                 if(x2>=0&&x2<=29&&y2>=0&&y2<=49&&graph[x2][y2]=='0'&&visited[x2][y2]!=1){
                     queue.add(new Node(x2, y2, str1+path[i]));//新加入队列
                     visited[x2][y2]=1;
                 }
             }
         }

完整代码:

import java.util.LinkedList;

public class migong {

   static class Node{//用于储存路径str
       int x;
       int y;
       String str;
       public Node(int x , int y ,String str){
           this.x =x;
           this.y =y;
           this.str = str;
       }
   }

   static char[][]  graph = new char[30][50];
   static char[] path = {'D','L','R','U'};
   static int[] h = {1,0,0,-1};
   static int[] l = {0,-1,1,0};
   static int[][] visited = new int[30][50];


   public static void main(String[] args) {
       String[] nn= {
               "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"};
       for(int i=0;i<30;i++){
           graph[i]=nn[i].toCharArray();
       }
       LinkedList<Node> queue = new LinkedList<>();//队列
       queue.add(new Node(0, 0, ""));//加载开始的位置(0,0)
       visited[0][0] =1;
       String shunxv ="";//广度优先搜索最后的结果
       while(!queue.isEmpty()){//队列非空
           Node  t = queue.poll();//出队,为最先进队的位置
           int x1 = t.x;
           int y1 = t.y;
           String str1 = t.str;
           if(x1==29&&y1==49){//当达到终点跳出即可
               shunxv = str1;
               break;
           }
           for(int i=0;i<4;i++){//按字典序列广度搜索
               int x2= x1+h[i];
               int y2= y1+l[i];
               if(x2>=0&&x2<=29&&y2>=0&&y2<=49&&graph[x2][y2]=='0'&&visited[x2][y2]!=1){
                   queue.add(new Node(x2, y2, str1+path[i]));//新加入队列
                   visited[x2][y2]=1;
               }
           }
       }
       System.out.println(shunxv);
   }

}