zoukankan      html  css  js  c++  java
  • 1010 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 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代码:

     1 #include<iostream>
     2 #include<cstring>
     3 #include<cstdio>
     4 
     5 using namespace std;
     6 
     7 
     8 int dp[14][14]={0};
     9 char ch[14][14];
    10 int x,y,s;
    11 int em()
    12 {
    13     int number=1;
    14     int a=1,b=s;
    15     while(1){
    16         if(dp[a][b]){//循环情况的处理;
    17         cout<<dp[a][b]-1<<" step(s) before a loop of "<<number-dp[a][b]<<" step(s)"<<endl;
    18         return 0;
    19     }
    20         if(a==0||a==x+1||b==0||b==y+1){cout<<number-1<<" step(s) to exit"<<endl;return 0;}
    21         dp[a][b]=number;
    22         switch(ch[a][b])
    23         {
    24         case 'E':b++;break;
    25             case 'W':b--;break;
    26                 case 'S':a++;break;
    27                     case 'N':a--;break;
    28         }
    29         number++;
    30     }
    31 }
    32 
    33 int main()
    34 {
    35     freopen("1.txt","r",stdin);
    36     int i,j;
    37     while(1){
    38         memset(dp,0,sizeof(dp));
    39         cin>>x>>y>>s;
    40         if(x==y&&y==s&&s==0)return 0;
    41         for(i=1;i<=x;i++)
    42             for(j=1;j<=y;j++)cin>>ch[i][j];
    43         em();
    44     }
    45 }
    View Code
  • 相关阅读:
    语料和文本处理
    seq2seq+torch7聊天机器人bug处理
    unity3d inputfield标签控制台打印object
    多种语言tcp编程
    处理json中的空格
    安卓无法访问Azure服务器和微软API
    Xamarin/Unity3d无法访问Azure服务器或者微软API
    unity3d C# soket客户端接受失败
    unity3d之public变量引发错误
    unity3d,java,c#,python,rospy的socket通信测试
  • 原文地址:https://www.cnblogs.com/zhangchengbing/p/3229788.html
Copyright © 2011-2022 走看看