Robot Motion

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)
这题题意很明确,机器人走了安指令走路,指令是一个二维数组;
1.多少补走出指定范围;
2.或者多少步之后会画一个多少步的圈
结合图理解,不需要多说了;
 
  1 #include<stdio.h>
  2 #include<string.h>
  3 #include<stdlib.h>
  4 int main()
  5 {
  6     char s[20][20];
  7     int i,j,m,n,a,p[20][20];
  8     while(scanf("%d %d %d%*c",&m,&n,&a)&&m&&n&&a)
  9     {
 10         memset(p,0,sizeof(p));
 11         for(i=0; i<m; i++)
 12         {
 13             for(j=0; j<n; j++)
 14                 scanf("%c",&s[i][j]);
 15             getchar();
 16         }
 17         j=a-1;
 18         i=0;
 19         p[i][j]=1;
 20         while(1)
 21         {
 22             if(s[i][j]=='N')
 23             {
 24                 if(i-1<0)
 25                 {
 26                     printf("%d step(s) to exit
",p[i][j]);
 27                     break;
 28                 }
 29                 else if(p[i-1][j])
 30                 {
 31                     printf("%d step(s) before a loop of %d step(s)
",p[i-1][j]-1,p[i][j]+1-p[i-1][j]);
 32                     break;
 33                 }
 34                 else
 35                 {
 36                     p[i-1][j]=p[i][j]+1;
 37                     i--;
 38                     continue;
 39                 }
 40             }
 41             else if(s[i][j]=='S')
 42             {
 43                 if(i+1==m)
 44                 {
 45                     printf("%d step(s) to exit
",p[i][j]);
 46                     break;
 47                 }
 48                 else if(p[i+1][j])
 49                 {
 50                     printf("%d step(s) before a loop of %d step(s)
",p[i+1][j]-1,p[i][j]+1-p[i+1][j]);
 51                     break;
 52                 }
 53                 else
 54                 {
 55                     p[i+1][j]=p[i][j]+1;
 56                     i++;
 57                     continue;
 58                 }
 59             }
 60             else if(s[i][j]=='W')
 61             {
 62                 if(j-1<0)
 63                 {
 64                     printf("%d step(s) to exit
",p[i][j]);
 65                     break;
 66                 }
 67                 else if(p[i][j-1])
 68                 {
 69                     printf("%d step(s) before a loop of %d step(s)
",p[i][j-1]-1,p[i][j]+1-p[i][j-1]);
 70                     break;
 71                 }
 72                 else
 73                 {
 74                     p[i][j-1]=p[i][j]+1;
 75                     j--;
 76                     continue;
 77                 }
 78             }
 79             else if(s[i][j]=='E')
 80             {
 81                 if(j+1==n)
 82                 {
 83                     printf("%d step(s) to exit
",p[i][j]);
 84                     break;
 85                 }
 86                 else if(p[i][j+1])
 87                 {
 88                     printf("%d step(s) before a loop of %d step(s)
",p[i][j+1]-1,p[i][j]+1-p[i][j+1]);
 89                     break;
 90                 }
 91                 else
 92                 {
 93                     p[i][j+1]=p[i][j]+1;
 94                     j++;
 95                     continue;
 96                 }
 97             }
 98         }
 99     }
100     return 0;
101 }
View Code
原文地址:https://www.cnblogs.com/kongkaikai/p/3241897.html