Robot Motion

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 5011    Accepted Submission(s): 2321

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
 
Sample Output
10 step(s) to exit
3 step(s) before a loop of 8 step(s)
 
Source
 模拟题..
 #include<cstdio>
#include<cstring>
const int maxn=;
char maze[][maxn];
int record[][maxn];
int main()
{
int r,c,pos,i,j;
while(scanf("%d%d",&r,&c),r+c)
{
scanf("%d",&pos);
memset(maze,'\0',sizeof maze);
memset(record,,sizeof record);
for( i=;i<r;i++)
{
scanf("%s",maze[i]);
}
int newr=,newc=pos-;
bool judge=true;
while(newc>=&&newr>=&&maze[newr][newc]!=)
{
record[newr][newc]++;
if(record[newr][newc]==)
{
judge=false;
break;
} switch(maze[newr][newc])
{
case 'N': newr--; break; //up
case 'S': newr++; break; //down
case 'E': newc++; break; //right
case 'W': newc--; break; //left }
}
int step=,circle=;
for( i=;i<r;i++)
{
for( j=;j<c;j++)
{
if(record[i][j]==)
step++;
else
if(record[i][j]!=)
circle++; }
} if(judge)
printf("%d step(s) to exit\n",step);
else
printf("%d step(s) before a loop of %d step(s)\n",step,circle);
}
return ;
}

最新文章

  1. mac maven
  2. Unable to convert MySQL date/time value to System.DateTime 错误
  3. WaitType:ASYNC_NETWORK_IO
  4. Linux图形&amp;命令行界面切换
  5. AOP的实现机制
  6. C# 上传RAR文件 解压 获取解压后的文件名称
  7. 在Eclipse中安装m2e插件遇到的问题
  8. 如何解决编译linux内核(解决声卡问题),遭遇fatal error: linux/limits.h: 没有那个文件或目录
  9. 《算法问题实战策略》-chaper7-穷举法
  10. Git现实(四)状态转换
  11. Delphi + Asm - TBits类的学习
  12. 简明CSS属性:定位
  13. Django中扩展Paginator实现分页
  14. 用R语言做数据清理(详细教程)
  15. configparser 练习
  16. 排序算法入门之插入排序(java实现)
  17. 【心得】Lattice后端使用经验小结(ECP5UM,DDR3,Diamond3.10,Reveal逻辑分析)
  18. Ubuntu18.04安装Android Studio
  19. myeclipse创建maven android项目
  20. BIEE物理业务层编辑之后发布路径

热门文章

  1. MFC中设备描述表dc的使用
  2. 怎样将 MySQL 迁移到 MariaDB 上
  3. java实现高性能的数据同步
  4. Tensorflow高速入门2--实现手写数字识别
  5. 解决webstorm本地IP访问页面出错的问题,webstorm支持IP访问
  6. 基于spring与mockito单元测试Mock对象注入
  7. Spring AspectJ切入点语法详解
  8. C#.NET常见问题(FAQ)-构造器constructor有什么用
  9. 微信小程序 - 时间轴(组件)
  10. unity3d与web网页通信