<poj-1573>Robot Motion

左手的ㄟ右手 2022-07-15 08:28 212阅读 0赞

Robot Motion














Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 13145   Accepted: 6372

Description

1573_1.jpg
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

  1. 3 6 5
  2. NEESWE
  3. WWWESS
  4. SNWWWW
  5. 4 5 1
  6. SESWE
  7. EESNW
  8. NWEEN
  9. EWSEN
  10. 0 0 0

Sample Output

  1. 10 step(s) to exit
  2. 3 step(s) before a loop of 8 step(s)

Source

应该还是个简单的模拟题吧,做了上一个题,原来觉得这个题应该很轻松的,因为有个地方没有写成else if 调了好长时间

  1. #include<stdio.h>
  2. #include<string.h>
  3. int main()
  4. {
  5. char map[100][100];
  6. int visit[100][100];
  7. int step[100][100];
  8. int n, m, k;
  9. int i, j, ii, jj;
  10. while(scanf("%d %d %d", &n, &m, &k)!=EOF)
  11. {
  12. int count = 1;
  13. memset(map, 0, sizeof(map));
  14. memset(visit,0, sizeof(visit));
  15. memset(step, 0, sizeof(step));
  16. if(n == 0&&m == 0 && k == 0)
  17. break;
  18. for(i = 0; i < n;i++)
  19. scanf("%s",&map[i]);
  20. i = 0;
  21. j = k-1;
  22. while(1)//满足条件就循环
  23. {
  24. visit[i][j] = 1;
  25. step[i][j] = count;
  26. ii = i;
  27. jj = j;
  28. if(map[i][j] == 'N')
  29. i--;
  30. else if(map[i][j] == 'E')
  31. j++;
  32. else if(map[i][j] == 'S')
  33. i++;
  34. else if(map[i][j] == 'W')
  35. j--;
  36. count++;//记录步数
  37. if(i>n-1 || i < 0 || j > m-1 ||j < 0 || visit[i][j] == 1)
  38. break;
  39. }
  40. if(visit[i][j] == 1)//如果是因为已经访问的输出,就是有循环
  41. printf("%d step(s) before a loop of %d step(s)\n",step[i][j]-1, count-step[i][j]);
  42. else
  43. printf("%d step(s) to exit\n",step[ii][jj]);
  44. }
  45. return 0;
  46. }

发表评论

表情:
评论列表 (有 0 条评论,212人围观)

还没有评论,来说两句吧...

相关阅读

    相关 Robot Motion

    链接:http://poj.org/problem?id=1573 Problem Description: 机器人已经被编程以遵循其路径中的指示。机器人要移动的下一个方向