刷题日记——BFS:离开迷宫最短时间、生化武器(天津大学/南开大学机试)

例题

在这里插入图片描述

分析

  • 需要注意地图的输入,每一行都有个换行符,需要扔掉
  • 写完地图的输入,最好输出一下验证一下输入的对不对
  • 由于是求最短的时间,BFS第一次找到终点就输出即可
  • 考虑到连续输入多个样例的可能性,如果选择找到终点就输出,应该要把队列定义在每次地图输入的操作执行里面,如果定义在全局,那么上一次找到最短时间时可能没有全部出队,这样会导致错误发生

代码

#include <cstdio>
#include <map>
#include <string>
#include <string.h>
#include <cmath>
#include <vector>
#include <algorithm>
#include <stack>
#include <queue>
#include <set>
#include <limits.h>
using namespace std;

char field[101][101];
bool visited[101][101];
int direct_x[4]={-1,1,0,0};
int direct_y[4]={0,0,-1,1};

struct position{
  int x;
  int y;
  int time;
};



int main(){
  int h,w;
  while(true){
    scanf("%d%d",&h,&w);
    if(h==0&&w==0){
      break;
    }
    //开始初始化BFS
    position start;
    queue<position> instructor;

    for(int i=1;i<=h;i++){
      for(int j=0;j<=w;j++){
        scanf("%c",&field[i][j]);
        visited[i][j]=false;
        if(field[i][j]=='S'){
          start.x = i;
          start.y = j;
          visited[i][j]=true;
        }
      }
    }
    /*
    for(int i=1;i<=h;i++){
      for(int j=1;j<=w;j++){
        printf("%c",field[i][j]);
      }
      printf("\n");
    }
    */
    //继续初始化BFS
    start.time=0;
    instructor.push(start);

    bool flag = false;

    while(instructor.empty()!=true){
      int x = instructor.front().x;
      int y = instructor.front().y;
      if(field[x][y]=='E'&&flag==false){
        printf("%d\n",instructor.front().time);
        flag = true;
        break;
      }
      for(int i=0;i<4;i++){
        int temp_x = x+direct_x[i];
        int temp_y = y+direct_y[i];
        if((field[temp_x][temp_y]=='*'||field[temp_x][temp_y]=='E')&&visited[temp_x][temp_y]==false){
          position temp;
          temp.x = temp_x;
          temp.y = temp_y;
          temp.time = instructor.front().time+1;
          instructor.push(temp);
          visited[temp_x][temp_y]=true;
        }
      }
      instructor.pop();
    }
    if(flag==false){
      printf("-1\n");
    }
  }
	return 0;
}

例题——生化武器

在这里插入图片描述

分析

  • 同样是BFS
  • 注意退出BFS的条件,即队首位置的时间与所要计的时间一样
  • 卡题卡了10分钟没AC,原因竟然是输出没有隔一行!!!!!!注意要看清题目啊!!!!

代码

#include <cstdio>
#include <map>
#include <string>
#include <string.h>
#include <cmath>
#include <vector>
#include <algorithm>
#include <stack>
#include <queue>
#include <set>
#include <limits.h>
using namespace std;

char field[101][101];
bool visited[101][101];
int direct_x[4]={-1,1,0,0};
int direct_y[4]={0,0,-1,1};

struct position{
  int x;
  int y;
  int time;
};



int main(){
  int n,m,t;
  while(scanf("%d%d%d",&n,&m,&t)!=EOF){
    	char bin;
    scanf("%c",&bin);//把回车扔掉

    //BFS初始化
    position start;//定义起点
    queue<position> instructor;

    for(int i=1;i<=n;i++){
      for(int j=1;j<=m+1;j++){
        char temp;
        scanf("%c",&temp);
        if(temp=='\n'){
          break;//把回车扔掉
        }
        field[i][j]=temp;
        visited[i][j]=false;
        if(temp=='*'){
          start.x = i;
          start.y = j;
          field[i][j]='#';
          visited[i][j]=true;
        }
      }
    }

    //测试:输入是否正确接收?
    //这个在后面输出还有用
    /*for(int i=1;i<=n;i++){
      for(int j=1;j<=m;j++){
        printf("%c",field[i][j]);
      }
      printf("\n");
    }*/

    //对起始位置进一步初始化
    start.time = 0;
    instructor.push(start);
    int flag=false;
    while(instructor.empty()!=true){
      int x = instructor.front().x;
      int y = instructor.front().y;
      int time = instructor.front().time;
      if(time==t){
        flag = true;
        break;
      }
      for(int i=0;i<4;i++){
        int temp_x = x+direct_x[i];
        int temp_y = y+direct_y[i];
        if(field[temp_x][temp_y]=='.'&&visited[temp_x][temp_y]==false){
          field[temp_x][temp_y]='#';
          visited[temp_x][temp_y]=true;
          position temp;
          temp.x = temp_x;
          temp.y = temp_y;
          temp.time = time+1;
          instructor.push(temp);
        }
      }
      instructor.pop();
    }
    if(flag==true){
      for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
          printf("%c",field[i][j]);
        }
        printf("\n");
      }
		printf("\n");
    }else{
      printf("No\n");
    }

  }
	return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/483773.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

手撕算法-二叉树的层平均值

描述 分析 二叉树的层序遍历。层序遍历需要用到队列。 代码 /*** Definition for a binary tree node.* public class TreeNode {* int val;* TreeNode left;* TreeNode right;* TreeNode() {}* TreeNode(int val) { this.val val; }* TreeNode(int val, TreeNode left, T…

阿里云ECS服务器u1通用算力型CPU性能如何?

阿里云服务器u1是通用算力型云服务器&#xff0c;CPU采用2.5 GHz主频的Intel(R) Xeon(R) Platinum处理器&#xff0c;通用算力型u1云服务器不适用于游戏和高频交易等需要极致性能的应用场景及对业务性能一致性有强诉求的应用场景(比如业务HA场景主备机需要性能一致)&#xff0c…

java画各种卡通人物图

需要可以关注加q:2430486030

【数据结构】快速排序(不用递归)

大家好&#xff0c;我是苏貝&#xff0c;本篇博客带大家了解快速排序的非递归方法&#xff0c;如果你觉得我写的还不错的话&#xff0c;可以给我一个赞&#x1f44d;吗&#xff0c;感谢❤️ 上一篇博客我们讲了如何实现使用递归的快速排序&#xff0c;今天我们再来了解一下如何…

进程等待与进程程序替换

一、进程等待 1.进程等待的必要性 &#xff08;1&#xff09;子进程退出&#xff0c;父进程如果不管不顾&#xff0c;就可能造成‘僵尸进程’的问题&#xff0c;进而造成内存泄漏。 &#xff08;2&#xff09;另外&#xff0c;进程一旦变成僵尸状态&#xff0c;那就刀枪不入&…

unity学习(67)——控制器Joystick Pack方向

1.轮盘直接复制一个拖到右边就ok了&#xff0c;轮盘上是有脚本的。&#xff08;只复制&#xff09; 2.上面的显示窗也可以复制&#xff0c;但是要绑定对应的轮盘&#xff08;unity中修改变量&#xff09;&#xff0c;显示窗上是有脚本的。&#xff08;复制改变量&#xff09; 3…

【PyQt】18 -菜单等顶层操作

顶层界面的使用 前言一、菜单栏1.1 代码1.2 运行结果 二、工具栏2.1 代码几种显示方法 2.2 运行结果 三、状态栏3.1 代码3.2 运行结果 总结 前言 1、介绍顶层菜单栏目的使用&#xff0c;但没有陆续绑定槽函数。 2、工具栏 3、状态栏 一、菜单栏 1.1 代码 #Author &#xff1a…

网络分类简述与数据链路层协议(PPP)

实验拓扑 实验要求 1、R1和R2使用PPP链路直连&#xff0c;R2和R3把2条PPP链路捆绑为PPP MP直连按照图示配置IP地址 2、R2对R1的PPP进行单向chap验证 3、R2和R3的PPP进行双向chap验证 实验思路 给R1、R2的S3/0/0接口配置IP地址&#xff0c;已给出网段192.168.1.0/24R2作为主…

第十一届蓝桥杯大赛第二场省赛试题 CC++ 研究生组-回文日期

solution1&#xff08;通过50%&#xff09; #include<stdio.h> void f(int a){int t a;while(a){printf("%d", a % 10);a / 10;}if(t < 10) printf("0"); } int isLeap(int n){if(n % 400 0 || (n % 4 0 && n % 100 ! 0)) return 1;r…

R语言实战—一文搞定桑基图的绘制

一、桑基图介绍 桑基图&#xff08;Sankey diagram&#xff09;&#xff0c;即桑基能量分流图&#xff0c;也叫桑基能量平衡图。它是一种特定类型的流程图&#xff0c;概述图中延伸的分支的宽度对应数据流量的大小&#xff0c;通常应用于能源、材料成分、金融等数据的可视化分…

29-5 webshell 流量分析 - 菜刀

环境准备:构建完善的安全渗透测试环境:推荐工具、资源和下载链接_渗透测试靶机下载-CSDN博客 一、上传木马到靶场然后使用菜刀连接抓取流量 1)上传木马到upload-labs靶场 自己创建一个php文件作为木马 <?php eval($_POST["pass"]);2)然后开启 Wireshark …

如何修改大模型的位置编码 --以LLama为例

最近在看RoPE相关内容&#xff0c;一些方法通过简单修改位置编码就可以无需训练支持更长的文本内容。由于一些模型&#xff0c;已经训练好了&#xff0c;但是怎么修改已经训练好的模型位置编码。查了以下相关代码&#xff0c;记录一下。原理这里就不细讲了&#xff0c;贴几个相…

Git工具的详细使用

一、环境说明 [rootgit ~]# getenforce Disabled [rootgit ~]# systemctl status firewalld ● firewalld.service - firewalld - dynamic firewall daemonLoaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)Active: inactive (d…

javaWeb项目-人职匹配推荐系统功能介绍

开发工具&#xff1a;IDEA 、Eclipse 编程语言: Java 数据库: MySQL5.7 框架&#xff1a;ssm、Springboot 前端&#xff1a;Vue、ElementUI 关键技术&#xff1a;springboot、SSM、vue、MYSQL、MAVEN 数据库工具&#xff1a;Navicat、SQLyog 项目关键技术 1、JSP技术 JSP(Java…

YOLOv5 | 网络结构 | 详细讲解YOLOv5的网络结构

⭐欢迎大家订阅我的专栏一起学习⭐ &#x1f680;&#x1f680;&#x1f680;订阅专栏&#xff0c;更新及时查看不迷路&#x1f680;&#x1f680;&#x1f680; YOLOv5涨点专栏&#xff1a;http://t.csdnimg.cn/70xZa YOLOv8涨点专栏&#xff1a;http://t.csdnimg.cn…

0基础 三个月掌握C语言(13)-下

数据在内存中的存储 浮点数在内存中的存储 常见的浮点数&#xff1a;3.141592、1E10等 浮点数家族包括&#xff1a;float、double、long double类型 浮点数表示的范围&#xff1a;在float.h中定义 练习 关于&#xff08;float*)&n&#xff1a; &n&#xff1a;这是一…

【赠书活动】Python编程 从入门到实践 第3版(图灵出品)(文末送书-进行中)

编辑推荐 适读人群 &#xff1a;本书适合对Python感兴趣的所有读者阅读。 编程入门就选蟒蛇书&#xff01; 【经典】Python入门经典&#xff0c;常居Amazon等编程类图书TOP榜 【畅销】热销全球&#xff0c;以12个语种发行&#xff0c;影响超过 250 万读者 【口碑】好评如潮…

termux+ubuntu使用笔记

文章目录 termuxtermux自动启动服务的方法1. 写.bashrc文件2. 利用termux-services来实现 安装sshtermux 执行定时任务 ubuntu参考文章 这里仅针对自己在使用过程所做的笔记 termux环境下搭建Ubuntu环境可以参考&#xff1a;https://github.com/MFDGaming/ubuntu-in-termux上提…

如何在 Django 中使用 pyecharts

为项目新建一个目录&#xff0c;将其命名为django_pyecharts_demo, 在终端中切换到这个目录&#xff0c;并创建一个虚拟环境。 python -m venv django_pyecharts激活虚拟环境 django_pyecharts\Scripts\activate要停止使用虚拟环境&#xff0c;可执行命令 deactivate创建并激…