[ACM] hdu 1035 Robot Motion (模拟或DFS)

来源:互联网 发布:齐鲁石化网络电视台 编辑:程序博客网 时间:2024/05/01 06:13

Robot Motion



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 5NEESWEWWWESSSNWWWW4 5 1SESWEEESNWNWEENEWSEN0 0
 

Sample Output
10 step(s) to exit3 step(s) before a loop of 8 step(s)
 

Source
Mid-Central USA 1999



解题思路:

每个地图位置上都有一个方向,到达当前坐标,根据当前坐标的方向进行下一步的行走,给出起始位置,模拟机器人行走,可能会逃脱地图,输出步数,也可能会陷入死循环,也就是某个坐标位置第二次遇到,输出陷入循环前走的步数以及循环里面走的步数。模拟一下,判断是否有循环,到达坐标x,y的步数用step[x][y]存储,如果下一步是合法的行走(即没有越界,也没有重复访问),那么step[nextx][nexty]=step[x][y]+1,如果有循环,那么用单独一个变量duo来保存第二次到达某坐标位置所需要的步数,break掉。

代码:

[cpp] view plaincopy在CODE上查看代码片派生到我的代码片
  1. #include <iostream>  
  2. #include <algorithm>  
  3. #include <string.h>  
  4. using namespace std;  
  5. const int maxn=110;  
  6. char map[maxn][maxn];  
  7. int step[maxn][maxn];//到达当前点走的步数  
  8. bool visit[maxn][maxn];//是否已经访问  
  9. int nextx,nexty;//下一个坐标位置  
  10. int n,m,p;//地图行列,开始位置的列数  
  11. bool loop;//判断走的路径是否出现环  
  12. int duo;//如果出现环,记录第二次走到该位置所需要的步数  
  13.   
  14. bool escape(int x,int y)//判断是否逃出地图  
  15. {  
  16.     if(x<1||x>n||y<1||y>m)  
  17.         return true;  
  18.     return false;  
  19. }  
  20.   
  21. void input(int n,int m)  
  22. {  
  23.     memset(step,0,sizeof(step));  
  24.     memset(visit,0,sizeof(visit));  
  25.     for(int i=1;i<=n;i++)  
  26.         for(int j=1;j<=m;j++)  
  27.         cin>>map[i][j];  
  28. }  
  29.   
  30. void walk(int x,int y)//模拟行走  
  31. {  
  32.     visit[x][y]=1;  
  33.     while(1)  
  34.     {  
  35.         if(map[x][y]=='E')//判断当前坐标方向,来确定下一个坐标位置  
  36.         {  
  37.             nextx=x;  
  38.             nexty=y+1;  
  39.         }  
  40.         else if(map[x][y]=='W')  
  41.         {  
  42.             nextx=x;  
  43.             nexty=y-1;  
  44.         }  
  45.         else if(map[x][y]=='N')  
  46.         {  
  47.             nextx=x-1;  
  48.             nexty=y;  
  49.         }  
  50.         else  
  51.         {  
  52.             nextx=x+1;  
  53.             nexty=y;  
  54.         }  
  55.         if(escape(nextx,nexty))//已经逃脱,则步数为step[x][y]+1,nextx,nexty为全局变量,无论是否能逃脱,最后输出步数用nextx,nexty做参数比较方便  
  56.         {  
  57.             nextx=x;  
  58.             nexty=y;  
  59.             break;  
  60.         }  
  61.         else if(visit[nextx][nexty])//第二次访问该位置  
  62.         {  
  63.             loop=1;//出现环  
  64.             duo=step[x][y]+1;  
  65.             break;  
  66.         }  
  67.         else//既没有逃脱地图,下一个位置也没有被访问  
  68.         {  
  69.             visit[nextx][nexty]=1;  
  70.             step[nextx][nexty]=step[x][y]+1;//关键,下一个位置步数比前个位置步数多1  
  71.             x=nextx;//这里是为了连接while循环,注意看while循环里面的第一条if语句  
  72.             y=nexty;  
  73.         }  
  74.     }  
  75. }  
  76.   
  77. int main()  
  78. {  
  79.     while(cin>>n>>m>>p&&(n||m||p))  
  80.     {  
  81.         input(n,m);  
  82.         loop=0;  
  83.         walk(1,p);  
  84.         if(!loop)//没有环  
  85.         {  
  86.             cout<<step[nextx][nexty]+1<<" step(s) to exit"<<endl;  
  87.         }  
  88.         else  
  89.             cout<<step[nextx][nexty]<<" step(s) before a loop of "<<duo-step[nextx][nexty]<<" step(s)"<<endl;  
  90.     }  
  91.     return 0;  
  92. }  
0 0