逃离迷宫

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 22233    Accepted Submission(s): 5413

Problem Description
 
 给定一个m × n (m行,
n列)的迷宫,迷宫中有两个位置,gloria想从迷宫的一个位置走到另外一个位置,当然迷宫中有些地方是空地,gloria可以穿越,有些地方是障碍,
她必须绕行,从迷宫的一个位置,只能走到与它相邻的4个位置中,当然在行走过程中,gloria不能走到迷宫外面去。令人头痛的是,gloria是个没什
么方向感的人,因此,她在行走过程中,不能转太多弯了,否则她会晕倒的。我们假定给定的两个位置都是空地,初始时,gloria所面向的方向未定,她可以
选择4个方向的任何一个出发,而不算成一次转弯。gloria能从一个位置走到另外一个位置吗?
 
Input
  第1行为一个整数t (1 ≤ t ≤ 100),表示测试数据的个数,接下来为t组测试数据,每组测试数据中,
  第1行为两个整数m, n (1 ≤ m, n ≤ 100),分别表示迷宫的行数和列数,接下来m行,每行包括n个字符,其中字符'.'表示该位置为空地,字符'*'表示该位置为障碍,输入数据中只有这两种字符,每组测试数据的最后一行为5个整数k, x1, y1, x2, y2 (1 ≤ k ≤ 10, 1 ≤ x1, x2 ≤ n, 1 ≤ y1, y2 ≤ m),其中k表示gloria最多能转的弯数,(x1, y1), (x2, y2)表示两个位置,其中x1,x2对应列,y1, y2对应行。
 
Output
  每组测试数据对应为一行,若gloria能从一个位置走到另外一个位置,输出“yes”,否则输出“no”。
 
Sample Input
2
5 5
...**
*.**.
.....
.....
*....
1 1 1 1 3
5 5
...**
*.**.
.....
.....
*....
2 1 1 1 3
 
Sample Output
no
yes
 
Source
 
限制了转弯次数不限制步数的搜索,所以当走到某个点时一直往它原来的方向走到底就行了。注意这个题输入的是 列 行 。。被坑了很多次才AC。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<math.h>
#include<queue>
#include<iostream>
using namespace std;
typedef long long LL;
char graph[][];
int n,m,cnt;
struct Node{
int x,y;
int step;
};
Node s,t;
bool vis[][];
bool check(int x,int y){
if(x<||x>=m||y<||y>=n||graph[x][y]=='*') return false;
return true;
}
int dir[][] = {{,},{-,},{,},{,-}};
bool bfs(){
memset(vis,false,sizeof(vis));
queue<Node> q;
q.push(s);
vis[s.x][s.y] = true;
s.step = ;
while(!q.empty()){
Node now = q.front();
q.pop();
if(now.step>cnt) return false;
if(now.x==t.x&&now.y==t.y) return true;
Node next;
for(int i=;i<;i++){
next.x = now.x+dir[i][];
next.y = now.y+dir[i][];
next.step = now.step+;
while(check(next.x,next.y)){
if(next.x==t.x&&next.y==t.y) return true;
if(vis[next.x][next.y]==false){ ///没访问过进入队列
vis[next.x][next.y]=true;
q.push(next);
}
next.x+=dir[i][]; ///笔直走向下一个点
next.y+=dir[i][];
} }
}
return false;
}
int main()
{
int tcase;
scanf("%d",&tcase);
while(tcase--){
scanf("%d%d",&m,&n);
for(int i=;i<m;i++){
scanf("%s",&graph[i]);
}
scanf("%d%d%d%d%d",&cnt,&s.y,&s.x,&t.y,&t.x); ///莫名的坑
s.x-=,s.y-=,t.x-=,t.y-=;
bool flag = bfs();
if(flag) printf("yes\n");
else printf("no\n");
}
return ;
}

还有一种解法比较好理解,标记每次的方向,vis数组加一维.

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <queue>
using namespace std;
const int N = ;
int n,m;
int x1,y11,x2,y2,k;
char graph[N][N];
struct Node{
int x,y,step,dir;
};
bool vis[N][N][];
int dir[][] = {{-,},{,},{,},{,-}};
bool check(int x,int y,int i){
if(x<||x>n||y<||y>m||vis[x][y][i]||graph[x][y]=='*') return false;
return true;
}
void bfs(){
memset(vis,false,sizeof(vis));
Node s;
s.x = x1,s.y = y11,s.step = ,s.dir = -;
if(graph[s.x][s.y]=='*'||graph[x2][y2]=='*'){
printf("no\n");
return;
}
queue <Node> q;
q.push(s);
while(!q.empty()){
Node now = q.front();
q.pop();
if(now.step>k){
printf("no\n");
return;
}
if(now.x==x2&&now.y==y2){
printf("yes\n");
return;
}
Node next;
for(int i=;i<;i++){
next.x = now.x + dir[i][];
next.y = now.y + dir[i][];
next.step = now.step;
next.dir = i;
if(now.dir!=-&&now.dir!=next.dir){
next.step = now.step+;
}
while(check(next.x,next.y,i)){
vis[now.x][now.y][i] = true;
vis[next.x][next.y][i] = true;
q.push(next);
next.x = next.x + dir[i][];
next.y = next.y + dir[i][];
next.dir = i;
next.step = next.step;
}
}
}
printf("no\n");
}
int main()
{
int tcase;
scanf("%d",&tcase);
while(tcase--){
scanf("%d%d",&n,&m);
memset(graph,,sizeof(graph));
for(int i=;i<=n;i++){
scanf("%s",graph[i]+);
}
scanf("%d%d%d%d%d",&k,&y11,&x1,&y2,&x2);
bfs();
}
return ;
}

最新文章

  1. [LintCode] Sort List 链表排序
  2. Go http共享
  3. jQuery简介
  4. JavaScript 误区
  5. PhantomJS快速入门
  6. espcms自定义表单邮件字段
  7. Java并发编程-并发工具包(java.util.concurrent)使用指南(全)
  8. nginx 调优
  9. 配置WindowsLiveWriter,写cnblogs博客
  10. IP地址基础知识
  11. SQL数据库知识二(Day 25)
  12. android log4j日志管理的使用
  13. Android源码编译jar包BUILD_JAVA_LIBRARY 与BUILD_STATIC_JAVA_LIBRARY的区别(二)
  14. 手机共享成wifi热点电脑无法上网的问题
  15. 用DirectShow实现视频采集-流程构建
  16. AngularJs 笔记
  17. 更换gcc工具链
  18. 软件工程_2nd weeks
  19. OCM_第二十天课程:Section9 &mdash;》Data Guard _ DATA GUARD 搭建/DATA GUARD 管理
  20. queue 的基本用法

热门文章

  1. java 会话跟踪技术
  2. 消息队列之 Kafka
  3. 标准C++(1)
  4. php通过geohash算法实现查找附近的商铺
  5. 面试之mybatis和hibernate的区别
  6. 网络编程-TCP/IP各层介绍(5层模型讲解)
  7. Leetcode26---&gt;Remove Duplicates from Sorted Array(从排序数组中移除相同的元素)
  8. doc下设置永久环境变量的好方法
  9. 聊聊、Nginx 参数合法性
  10. csa Round #66 (Div. 2 only)