NC14572走出迷宫

2024-02-16 17:48
文章标签 迷宫 走出 nc14572

本文主要是介绍NC14572走出迷宫,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!



这应该是一道入门级的题目了,用bfs和dfs都行
先写一下bfs
一开始本来想省点事,不写结构体了,坐标(i,j)直接用tmp=i*n+j代替,然后x=tmp/n,y=tmp%n,结果忘了j可能会大于等于n,debug一晚上

#include<iostream>
#include<queue>
#include<cstring>
using namespace std;
const int maxn = 5e2 + 2;char map[maxn][maxn];
int dir[4][2] = { {0,1},{0,-1},{1,0},{-1,0} };
int dis[maxn][maxn];
int n, m, startx, starty, endx, endy;
struct node {int x, y;
};bool inmap(int x, int y) {if (x < 1 || x > n) return 0;if (y < 1 || y > m) return 0;return 1;
}int main() {while (cin >> n >> m) {queue<node> q;memset(dis, -1, sizeof(dis));for (int i = 1;i <= n;i++) {for (int j = 1;j <= m;j++) {cin >> map[i][j];if (map[i][j] == 'S') { startx = i; starty = j; }if (map[i][j] == 'E') { endx = i; endy = j; }}}q.push({ startx,starty });dis[startx][starty] = 0;while (!q.empty()) {node tmp = q.front(); q.pop();for (int i = 0;i < 4;i++) {int tx = tmp.x + dir[i][0];int ty = tmp.y + dir[i][1];if (inmap(tx, ty) && dis[tx][ty] == -1 && map[tx][ty] != '#') {q.push({ tx,ty });dis[tx][ty] = dis[tmp.x][tmp.y] + 1;}}}if (dis[endx][endy] == -1) cout << "No" << endl;else cout << "Yes" << endl;}return 0;
}

下面是dfs写法:

#include<iostream>
#include<cstring>
using namespace std;
const int maxn = 509;int n, m, startx, starty;
int dir[4][2] = { {0,1},{0,-1},{1,0},{-1,0} };
bool vis[maxn][maxn];
char map[maxn][maxn];
bool flag;bool inmap(int x, int y) {if (x<1 || x>n) return 0;if (y<1 || y>m) return 0;return 1;
}void dfs(int x, int y) {if (map[x][y] == 'E') flag = 1;for (int i = 0; i < 4; i++) {int tx = x + dir[i][0];int ty = y + dir[i][1];if (inmap(tx, ty) && !vis[tx][ty] && map[tx][ty] != '#') {vis[tx][ty] = 1;dfs(tx, ty);}}
}int main() {while (cin >> n >> m) {flag = 0;memset(vis, 0, sizeof(vis));for (int i = 1; i <= n; i++) {for (int j = 1; j <= m; j++) {cin >> map[i][j];if (map[i][j] == 'S') {startx = i; starty = j;}}}vis[startx][starty] = 1;dfs(startx, starty);if (flag) cout << "Yes" << endl;else cout << "No" << endl;}return 0;
}

另外,出现了一个非常奇怪的事情

#include<iostream>
#include<cstring>
using namespace std;
const int maxn = 5e2 + 2;int n, m, startx, starty;
char map[maxn][maxn];
bool vis[maxn][maxn];
int dir[4][2] = { {1,0},{-1,0},{0,1},{0,-1} };
bool flag;bool inmap(int x, int y) {if (x < 1 || x > n) return 0;if (y < 1 || y > m) return 0;return 1;
}
下面两个dfs是一样的
/*void dfs(int x, int y) { //这个是错的if (map[x][y] == 'E') flag = 1;for (int i = 0; i < 4; i++) {int tx = x + dir[i][0];int ty = y + dir[i][1];if (inmap(tx, ty) && !vis[tx][ty] && map[ty][ty] != '#') {vis[tx][ty] = 1;dfs(tx, ty);}}
}*/void dfs(int x, int y) { //这个是对的if (map[x][y] == 'E') flag = 1;for (int i = 0; i < 4; i++) {int tx = x + dir[i][0];int ty = y + dir[i][1];if (inmap(tx, ty) && !vis[tx][ty] && map[tx][ty] != '#') {vis[tx][ty] = 1;dfs(tx, ty);}}
}int main() {while (cin >> n >> m) {flag = 0;memset(vis, 0, sizeof(vis));for (int i = 1;i <= n;i++) {for (int j = 1;j <= m;j++) {cin >> map[i][j];if (map[i][j] == 'S') { startx = i; starty = j;}}}vis[startx][starty] = 1;dfs(startx, starty);if (flag) cout << "Yes" << endl;else cout << "No" << endl;}return 0;
}

这篇关于NC14572走出迷宫的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/715250

相关文章

nyoj306(走迷宫)

走迷宫 时间限制: 1000 ms  |  内存限制: 65535 KB 难度:5 描述 Dr.Kong设计的机器人卡多非常爱玩,它常常偷偷跑出实验室,在某个游乐场玩之不疲。这天卡多又跑出来了,在SJTL游乐场玩个不停,坐完碰碰车,又玩滑滑梯,这时卡多又走入一个迷宫。整个迷宫是用一个N * N的方阵给出,方阵中单元格中填充了一个整数,表示走到这个位置的难度。 这个迷宫可以向上走,向

《GOF设计模式》—抽象工厂(Abstract Factory)—Delphi源码示例:基于抽象工厂的迷宫

 示例:基于抽象工厂的迷宫   实现:     如果TMaze.Create是传递一个对象当作参数来建立rooms、walls及doors;如此你可以以不同的参数来改变rooms、walls及doors的类。  请注意MazeFactory也就是工厂方法(Factory Method)的一个集合;这是最通常实现抽象工厂模式的方式。同时请注意MazeFactory不是一个抽象类

走迷宫变体【拼多多1面0905】

题目大致描述: 有一个N*M的迷宫,主角被放在随机的位置上,给你一个函数,控制主角逃离迷宫。 可以使用的函数:int move(String direction) (//direction代表上下左右四个方向,分别是“U"、“D"、“L"、“R"//返回值有3种,包括-1、0、1;-1表示前面是陷阱或墙,主角不能往前走,会留在原地;0表示迷宫出口,恭喜成功逃离;1表示前面可以走,主角前进一格)

FZU1205/SDUT1157_小鼠迷宫问题(DFS+BFS)

解题报告 http://blog.csdn.net/juncoder/article/details/38146041 题目传送门 题意 求最短路和最短路的路数。 思路: BFS+DFS,先求出最短路。在DFS搜等于最短路的条数。 不加优化SDUTOJ过了,数据就是水。 确定了最短路的长度,加上奇偶剪枝FOJ也过了。 #include <queue>#include <c

A*算法解决迷宫寻路问题

A*算法解决迷宫寻路问题 问题描述 下图是一个迷宫,试为机器人找一条从Start到End的最短路径设计一搜索算法 设计思路 a)状态空间的表示 首先将迷宫图转换为列表形式呈现,每个格子用 (横坐标,纵坐标,上通路状态,下通路状态,左通路状态,右通路状态)来表示,通路状态用1或0表示,可通过为1,不可通过为0。比如起点(1,1),假定不能从起点出去,所以(1,1)可以走下或走右,所以第一格

两种迷宫生成算法

这里要介绍两种迷宫生成的算法,Recursive Backtracking和Eller’s Algorithm。它们都生成的是Perfect maze,也就是说每个区域都连通,并且没有环的迷宫。 我们现在说Recursive backtracking: 迷宫的初始状态是墙壁都存在。选择一个开始区域。 随机得选择一个没有访问过的邻接区域,并打通与它之间的墙壁。此邻接区域称为当前区域。

深度优先遍历之迷宫生成算法

1、图的深度优先遍历简介     例如,要遍历上面这个图  采取深度优先算法(从1开始)  准备一个Stack s,预定义三种状态:A未被访问 B正准备访问 C已经访问  一、访问1,把它标记为已经访问,然后将于它相邻的并且标记为未被访问的点压入s 中并标记为正准备访问  此时系统状态:  已经被访问的点:1  还没有被访问的点:3 4

走出人格陷阱 — 武志红

2020-8-8 1,你选择,你才存在过。如果你总是被选择,那么你就不曾活过,生命的意义在于选择。 2,情商比智商重要,情商就是性格。 3,投射,你如何对别人,反应着你的内心。别人如何对你反应着别人的内心。 4,消极悲观的自我实现预言不可取。 5,拒绝拖累症,帮助值得帮助的人。 6,渴望改变父母,怪罪父母是逃避成长责任,不可取。 7,内心坚定,不愿改变,还是会走在老路上! 8,处理好四个关系,自己

HDU1269 迷宫城堡 (强连通图判定)

题意:判定给出的有向图是不是强连通图 Tarjan算法模板题目 #include<cstdio>#include<iostream>#include<algorithm>#include<cmath>#include<set>#include<map>#include<string>#include<cstring>#include<stack>#include<queue

【并查集】 HDU 1272 小希的迷宫

HDU 1272 小希的迷宫 需要判断是否是连通图。 #include <iostream>#include <string>#include <algorithm>#include <math.h>#include <stdio.h>#include <cstring>#include <stdlib.h>using namespace std;int father[100