博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1010 Robot Motion
阅读量:7064 次
发布时间:2019-06-28

本文共 2836 字,大约阅读时间需要 9 分钟。

Problem Description
A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The possible instructions are
 
N north (up the page)
  S south (down the page)
  E east (to the right on the page)
  W west (to the left on the page)
 
For example, suppose the robot starts on the north (top) side of Grid 1 and starts south (down). The path the robot follows is shown. The robot goes through 10 instructions in the grid before leaving the grid.
 
Compare what happens in Grid 2: the robot goes through 3 instructions only once, and then starts a loop through 8 instructions, and never exits.
 
You are to write a program that determines how long it takes a robot to get out of the grid or how the robot loops around.
 
 
Input
There will be one or more grids for robots to navigate. The data for each is in the following form. On the first line are three integers separated by blanks: the number of rows in the grid, the number of columns in the grid, and the number of the column in which the robot enters from the north. The possible entry columns are numbered starting with one at the left. Then come the rows of the direction instructions. Each grid will have at least one and at most 10 rows and columns of instructions. The lines of instructions contain only the characters N, S, E, or W with no blanks. The end of input is indicated by a row containing 0 0 0.
 
Output
For each grid in the input there is one line of output. Either the robot follows a certain number of instructions and exits the grid on any one the four sides or else the robot follows the instructions on a certain number of locations once, and then the instructions on some number of locations repeatedly. The sample input below corresponds to the two grids above and illustrates the two forms of output. The word "step" is always immediately followed by "(s)" whether or not the number before it is 1.
 
Sample Input
3 6 5
NEESWE
WWWESS
SNWWWW
4 5 1
SESWE
EESNW
NWEEN
EWSEN
0 0 0
 
Sample Output
10 step(s) to exit
3 step(s) before a loop of 8 step(s)
 
Source
PKU

题意:题目给出一个矩阵,让机器人按照规定行走;如果最终走入一个循环中,则输出进入循环前的的步数和循环的步数,如果最终走出矩阵范围也是输行走的步数;

       规则如下:

                   E:向右走一步;W:向左走一步;N:向上走一步;S向下走一步;

AC代码:

1 #include
2 #include
3 #include
4 5 using namespace std; 6 7 8 int dp[14][14]={
0}; 9 char ch[14][14];10 int x,y,s;11 int em()12 {13 int number=1;14 int a=1,b=s;15 while(1){16 if(dp[a][b]){
//循环情况的处理;17 cout<
<<" step(s) before a loop of "<
<<" step(s)"<
>x>>y>>s;40 if(x==y&&y==s&&s==0)return 0;41 for(i=1;i<=x;i++)42 for(j=1;j<=y;j++)cin>>ch[i][j];43 em();44 }45 }
View Code

 

 

 

转载于:https://www.cnblogs.com/zhangchengbing/p/3229788.html

你可能感兴趣的文章
【持续更新】jQuery 实用技巧
查看>>
大象也能起舞,Citrix X1计划让你对笔记本电脑say good bye
查看>>
Nginx 之常见报错问题解决
查看>>
linux 防爆破方法
查看>>
2、通过ipmitool工具修改IPMI的WEB密码
查看>>
云盘关闭,教你用蒲公英搭建私有云
查看>>
Spring Cloud 入门教程5、服务容错监控:Hystrix Dashboard
查看>>
很好的学习平台
查看>>
hibernate学习笔记3
查看>>
SQL Server 2005 日常运维检查操作手册
查看>>
利用jquery和jsonp来获取跨站数据,并实现cookie共享
查看>>
我的友情链接
查看>>
写sql语句时将时间格式“20110725”转化为格式2012年07月25日
查看>>
[Hadoop in China 2011] 蒋建平:探秘基于Hadoop的华为共有云
查看>>
heartbeat高可用+lvsDR
查看>>
方丈被害子女有没有权利继承遗产?
查看>>
java入门第一季5、6
查看>>
[转载] 闻一多——七子之歌
查看>>
针对tomcat日志乱码问题
查看>>
免费的协作和协同办公软件平台onlyoffice轻松部署
查看>>