zoukankan      html  css  js  c++  java
  • Robot Motion

    Robot Motion

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
    Total Submission(s) : 21   Accepted Submission(s) : 12
    Problem Description
    [img]/data/images/1035-1.gif[/img] 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
    Mid-Central USA 1999
     
     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 
     4 int main()
     5 {
     6     char a[15][15],chang;
     7     int i,j,H,L,D,NUM1,NUM2,sign1,sign2,sign;
     8     while(scanf("%d %d %d",&H,&L,&D)!=EOF)
     9     {
    10         int b[15][15]={0},c[15][15]={0};
    11         if(H==0&&L==0&&D==0)
    12             break;
    13         getchar();
    14         for(i=0;i<H;i++)
    15         {
    16             gets(a[i]);
    17         }
    18             sign1=0;
    19             sign2=D-1;
    20             NUM1=D;
    21             NUM2=1;
    22             sign=0;
    23         while(1)
    24         {
    25             chang=a[sign1][sign2];
    26             b[sign1][sign2]+=1;
    27             if(b[sign1][sign2]==2)
    28                 {printf("%d step(s) before a loop of %d step(s)
    ",c[sign1][sign2],sign-c[sign1][sign2]);break;}
    29             c[sign1][sign2]=sign;
    30             if(chang=='W')
    31                 {sign2--;NUM1--;}
    32             else if(chang=='S')
    33                 {sign1++;NUM2++;}
    34             else if(chang=='E')
    35                 {sign2++;NUM1++;}
    36             else if(chang=='N')
    37                 {sign1--;NUM2--;}
    38             sign++;
    39             if(NUM1==0||NUM1>L||NUM2==0||NUM2>H)
    40                 {printf("%d step(s) to exit
    ",sign);break;}
    41         }
    42     }
    43     return 0;
    44 }
    View Code
    转载请备注:
    **************************************
    * 作者: Wurq
    * 博客: https://www.cnblogs.com/Wurq/
    * Gitee: https://gitee.com/wurq
    **************************************
  • 相关阅读:
    [翻译]Webpack解惑
    Vue.js与angular在数据实现的思考
    多线程入门-第三章-线程的调度与控制之优先级
    多线程入门-第二章-线程的生命周期
    多线程入门-第一章-线程的创建与启动
    多线程入门-概述
    IO流入门-第十三章-File相关
    IO流入门-第十二章-ObjectInputStream_ObjectOutputStream
    IO流入门-第十一章-PrintStream_PrintWriter
    IO流入门-第十章-DataInputStream_DataOutputStream
  • 原文地址:https://www.cnblogs.com/Wurq/p/3750300.html
Copyright © 2011-2022 走看看