Robot_bfs
Description
The GO command has one integer parameter n in {1,2,3}. After receiving this command the robot moves n meters in the direction it faces.
The TURN command has one parameter which is either left or right. After receiving this command the robot changes its orientation by 90o in the direction indicated by the parameter.
The execution of each command lasts one second.
Help researchers of RMI to write a program which will determine the minimal time in which the robot can move from a given starting point to a given destination.
Input
Output
Sample Input
9 10
0 0 0 0 0 0 1 0 0 0
0 0 0 0 0 0 0 0 1 0
0 0 0 1 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0 0
0 0 0 0 0 0 1 0 0 0
0 0 0 0 0 1 0 0 0 0
0 0 0 1 1 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 1 0
7 2 2 7 south
0 0
Sample Output
12
【题意】给出一个n*m的图,给出起点和终点的坐标以及刚开始所处的方向,求最少步数,不能走出则输出-1;
【思路】
1、2种命令,一种是向现在所面向的方向走1-3步,另外一种是向左或向右90度转向(不能向后转)。
2、不允许出界和到达障碍物。
3、对搜索进行去重操作的时候需要记录所处位置的方向,因为这个题存在方向的问题,需要注意下,可以设置数组为vis用三维,第三维代表4个方向。
4、存在起点等于终点的情况,还有就是终点是无法到达的。
#include<iostream>
#include<queue>
#include<stdio.h>
#include<string.h>
using namespace std;
const int N=+;
struct node
{
int x,y;
int t;
int pos;
};
node cur;
int n,m,ex,ey,mp[N][N],ans;
bool vis[N][N][];
int dirx[]={-,,,},diry[]={,,,-};
int getPos(char *str)
{
if(!strcmp(str,"north")) return ;
if(!strcmp(str,"east")) return ;
if(!strcmp(str,"south")) return ;
return ;
}
bool isgo(int x,int y)
{
if(x<||x>=n||y<||y>=m)
return false;
if(mp[x][y]||mp[x+][y]||mp[x][y+]||mp[x+][y+])
return false ;
return true;
}
void bfs()
{
queue<node>qu;
qu.push(cur);
vis[cur.x][cur.y][cur.pos]=;
int ans=-;
if(cur.x==ex&&cur.y==ey)//起点相同
{
printf("0\n");
return ;
}
if(!isgo(ex,ey))//终点出界
{
printf("-1\n");
return ;
}
while(!qu.empty())
{
node now=qu.front();
qu.pop();
int xx=now.x;
int yy=now.y;
for(int i=;i<=;i++)
{
xx+=dirx[now.pos];
yy+=diry[now.pos];
if(!isgo(xx,yy)) break ;
if(xx==ex&&yy==ey)
{
ans=now.t+;
break;
}
if(!vis[xx][yy][now.pos])
{
node tmp;
tmp.x=xx;
tmp.y=yy;
tmp.t=now.t+;
tmp.pos=now.pos;
vis[xx][yy][tmp.pos]=;
qu.push(tmp);
}
}
for(int i=;i<;i++)
{
if(max(now.pos,i)-min(now.pos,i)==)
continue;
if(vis[now.x][now.y][i]) continue;
node next=now;
next.t=now.t+;
next.pos=i;
vis[next.x][next.y][next.pos]=;
qu.push(next);
}
if(ans!=-) break;
}
if(ans!=-) printf("%d\n",ans);
else printf("-1\n");
return ;
}
int main()
{
while(scanf("%d%d",&n,&m))
{
if(n==&&m==) break;
for(int i=;i<=n;i++)
{
for(int j=;j<=m;j++)
{
scanf("%d",&mp[i][j]);
}
} memset(vis,,sizeof(vis));
scanf("%d%d",&cur.x,&cur.y);
scanf("%d%d",&ex,&ey);
char op[];
scanf("%s",op);
cur.pos=getPos(op);
cur.t=;
bfs(); }
return ;
}
Robot_bfs的更多相关文章
随机推荐
- WordPress网站搭建
. 1.进入 var/www/html中放入里的文件 2.. 安装http php php-sql [root@jw38 yum.repos.d]# systemctl restart httpd.s ...
- html/css 钢琴黑白格布局
效果图:
- WebAPI返回数据类型解惑
本文来自:http://www.cnblogs.com/lzrabbit/archive/2013/03/19/2948522.html 最近开始使用WebAPI,上手很容易,然后有些疑惑 1.Web ...
- NoSQL生态系统——事务机制,行锁,LSM,缓存多次写操作,RWN
13.2.4 事务机制 NoSQL系统通常注重性能和扩展性,而非事务机制. 传统的SQL数据库的事务通常都是支持ACID的强事务机制.要保证数据的一致性,通常多个事务是不可能交叉执行的,这样就导致了可 ...
- springMVC中实现servlet依赖注入
记录一下开发过程中遇到的问题: 首先看一下这个帖子: http://blog.csdn.net/gaogaoshan/article/details/23540129 由于我使用的是springMVC ...
- Myeclipse安装SVN插件(转)
方法一:在线安装 1.打开HELP->MyEclipse Configuration Center.切换到SoftWare标签页. 2.点击Add Site 打开对话框,在对话框Name输入Sv ...
- 导航效果css
<!doctype html> <html> <head> <meta charset="utf-8" /> <style&g ...
- Python Day02
Python 代码执行流程: 编译 --> 执行 源代码 --> 字节码 --> 机器码 --> CPU执行 python 先将自己的源代码,编译成Python 字节 ...
- CSS-position详解
position属性 position属性可以调整DOM元素在浏览器中的位置,能够很好的体现HTML普通流这个特征.重点在于应用了不同的position值之后是否有脱离普通流和改变Display属性这 ...
- css初始化
Css初始化代码: *{padding:0px;margin:0px;} body{font-size:12px;font-family: "宋体",Arial Black;tex ...