当前位置: 首页 > article >正文

【蓝桥杯】走迷宫

题目:

解题思路:

        简单的广度优先算法(BFS)

BFS 的特性

  1. 按层次遍历:BFS 按照节点的距离(边的数量)来逐层访问节点。
  2. 保证最短路径:对于无权图(所有边权重相同),BFS 能够找到从起点到任何其他节点的最短路径。
  3. 避免回路:通过使用已访问标记(visited 数组),可以防止重复访问同一个节点,从而避免无限循环。
  4. 队列结构:使用队列来管理待访问的节点。
import java.util.Scanner;
import java.util.Queue;
import java.util.ArrayDeque;
// 1:无需package
// 2: 类名必须Main, 不可修改

public class Main {
  //方向
  static int[] dx = {0, 0, -1, 1};
  static int[] dy = {1, -1, 0, 0};
  //标记是否走过
  static boolean[][] visted;
  //矩阵大小
  static int N, M;
  //入口、出口位置
  static int startx, starty, endx, endy; 
  public static void main(String[] args) {
      Scanner scan = new Scanner(System.in);
      //在此输入您的代码...
      N = scan.nextInt();
      M = scan.nextInt();
      int [][] arr = new int[N][M];
      visted = new boolean[N][M];
      for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
          arr[i][j] = scan.nextInt(); 
        }
      }
      startx = scan.nextInt();
      starty = scan.nextInt();
      endx = scan.nextInt();
      endy = scan.nextInt();
      System.out.println(bfs(arr, startx - 1, starty - 1));
      scan.close();
  }
  public static int bfs(int[][] arr, int x, int y) {
    //创建队列,更新位置
    Queue<int[]> q = new ArrayDeque<>();
    q.offer(new int[] {x, y, 0});

    while(!q.isEmpty()) {
      int[] poll = q.poll();
      int x1 = poll[0];
      int y1 = poll[1];
      int steps = poll[2];
      //判断是否到达终点
      if (x1 == endx-1 && y1 == endy-1) {
        return steps;
      }
      //根据四个方向走下一步
      for (int i = 0; i < 4; i++) {
        int xx = x1 + dx[i];
        int yy = y1 + dy[i];
        if (xx >=0 && yy >= 0 && xx < N && yy < M && !visted[xx][yy] && arr[xx][yy] == 1) {
          visted[xx][yy] = true;
          q.offer(new int[] {xx, yy, steps + 1});
        }
      }
    }
    return -1;
  }
}


http://www.kler.cn/a/454885.html

相关文章:

  • Go+chromedp实现Web UI自动化测试
  • Excel将混乱的多行做成1列
  • 测序文章数据上传找哪里
  • 68jQuery【jQuery操作DOM、事件】
  • ubuntu 网络管理--NetworkManager
  • Java爬虫技术:按关键字搜索VIP商品详情
  • 题海拾贝:蓝桥杯 2020 省AB 乘法表
  • 免费资源网站
  • ANSYS EMC Plus:谐振腔中的天线
  • Markdown语法字体字号讲解
  • git revert
  • 【C#】WPF设置Separator为垂直方向
  • (icml2024)SLAattention,基于原文时序模型进行改进
  • 【AIGC篇】AIGC 引擎:点燃创作自动化的未来之火
  • 项目报 OutOfMemoryError 、GC overhead limit exceeded 问题排查以及解决思路实战
  • LeetCode 热题 100_二叉树的中序遍历(36_94_简单_C++)(二叉树;递归(中序遍历);迭代)
  • 如何在 Ubuntu 22.04 上安装 Ansible 教程
  • OpenStack系列第三篇:CentOS7 上部署 OpenStack(Train版)集群教程 Ⅲ Nova Neutron 服务部署
  • Go语言反射从入门到进阶
  • js 生成二维码(qrcodejs2-fix)
  • Intel AMD Hygon CPU缓存
  • 分阶段总结:建材制造业“数字化转型”总体架构与实现路径
  • 06 - Django 视图view
  • 拉链表,流⽔表以及快照表的含义和特点
  • vscode remote-ssh 免密登录不生效的问题
  • vue2 通过url ‘URLScheme‘实现直接呼起小程序