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代码:

 #include<iostream>
#include<cstring>
#include<cstdio> using namespace std; int dp[][]={};
char ch[][];
int x,y,s;
int em()
{
int number=;
int a=,b=s;
while(){
if(dp[a][b]){//循环情况的处理;
cout<<dp[a][b]-<<" step(s) before a loop of "<<number-dp[a][b]<<" step(s)"<<endl;
return ;
}
if(a==||a==x+||b==||b==y+){cout<<number-<<" step(s) to exit"<<endl;return ;}
dp[a][b]=number;
switch(ch[a][b])
{
case 'E':b++;break;
case 'W':b--;break;
case 'S':a++;break;
case 'N':a--;break;
}
number++;
}
} int main()
{
freopen("1.txt","r",stdin);
int i,j;
while(){
memset(dp,,sizeof(dp));
cin>>x>>y>>s;
if(x==y&&y==s&&s==)return ;
for(i=;i<=x;i++)
for(j=;j<=y;j++)cin>>ch[i][j];
em();
}
}

最新文章

  1. CSS3知识点整理&amp;&amp;一些demo
  2. JS设计模式初探
  3. C# 结构体
  4. extjs grid
  5. HDU 1171(01背包)
  6. iOS Storyboard 的基本用法
  7. 关于Modelsim仿真速度的优化
  8. javascript类继承系列二(原型链)
  9. iOS开发进阶之 UIWebView
  10. Common Lisp Style Guide - Ariel Networks Labs
  11. ZOJ-2091-Mean of Subsequence (反证法的运用!!)
  12. 随笔:关于去年的WordPress建站的回忆
  13. CentOS 安装 ceph 单机版
  14. ionic页面间跳转的动画实现
  15. oracle-pl/sql之二
  16. 10个很棒的学习Android 开发的网站
  17. 对 /etc/rc.d/init.d 目录的一点理解
  18. spring security积累
  19. 在C中调用Matlab (转)
  20. poj-2096-期望/dp

热门文章

  1. Android数据库--Sqlcipher的使用(一)
  2. WPF Image Binding Uri Source 失败解决办法
  3. js常用语句写法
  4. Math.round(),Math.ceil(),Math.floor()的区别
  5. 向量空间(Vector Spaces)
  6. Redis14--jedis实现主从模式。
  7. chrom 快捷键 整理版
  8. Unity3D研究院之在把代码混淆过的游戏返混淆回来(七十七)
  9. HTML表格标记
  10. Faster-R-CNN编译使用及相应问题解决