zoukankan      html  css  js  c++  java
  • hdu 1035 Robot Motion

    http://acm.hdu.edu.cn/showproblem.php?pid=1035

    Robot Motion

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 5003    Accepted Submission(s): 2314


    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
     
    Sample Output
    10 step(s) to exit 3 step(s) before a loop of 8 step(s)
     

    简单题

     1 #include<stdio.h>
     2 #include<string.h>
     3 char map[20][20];
     4 int vis[20][20];
     5 int row,col,flag,ans,step1[20][20],step2;
     6 void dfs(int x,int y,int step)
     7 {
     8 
     9      // printf("map[%d][%d]=%c,step=%d
    ",x,y,map[x][y],step);
    10       if(vis[x][y])
    11       {
    12           ans=step;
    13            step2=step1[x][y];
    14            return;
    15       }
    16      if(x<0||x>=row||y<0||y>=col)
    17      {
    18           flag=1;
    19 
    20           ans=step;
    21      }
    22      if(map[x][y]=='N')
    23      {
    24           vis[x][y]=1;
    25           step1[x][y]=step;
    26 
    27           dfs(x-1,y,step+1);
    28      }
    29       else if(map[x][y]=='E')
    30      {
    31           vis[x][y]=1;
    32 
    33            step1[x][y]=step;
    34           dfs(x,y+1,step+1);
    35      }
    36      else  if(map[x][y]=='S')
    37      {
    38           vis[x][y]=1;
    39 
    40            step1[x][y]=step;
    41           dfs(x+1,y,step+1);
    42      }
    43        else if(map[x][y]=='W')
    44      {
    45           vis[x][y]=1;
    46           step1[x][y]=step;
    47           dfs(x,y-1,step+1);
    48      }
    49 }
    50 int main()
    51 {
    52      int i,start;
    53      while(scanf("%d %d %d",&row,&col,&start)!=EOF&&row&&col&&start)
    54      {
    55           flag=0;
    56           memset(map,0,sizeof(map));
    57           memset(vis,0,sizeof(vis));
    58           for(i=0;i<row;i++)
    59           scanf("%s",map[i]);
    60           dfs(0,start-1,0);
    61           if(flag)
    62           printf("%d step(s) to exit
    ",ans);
    63           else
    64           printf("%d step(s) before a loop of %d step(s)
    ",step2,ans-step2);
    65 
    66      }
    67      return 0;
    68 }
    View Code
    Source
  • 相关阅读:
    kubectl exec 执行 容器命令
    centos下通过yum安装redis-cli
    windows下 使用ip地址反查主机名的命令
    O365(世纪互联)SharePoint 之文档库使用小记
    SharePoint 2016 图文安装教程
    SharePoint 2013 激活标题字段外的Menu菜单
    SharePoint 2013 定制搜索显示模板(二)
    SharePoint 2013 定制搜索显示模板
    SharePoint 2013 网站搜索规则的使用示例
    SharePoint 2013 搜索功能,列表项目不能完全被索引
  • 原文地址:https://www.cnblogs.com/llei1573/p/3199639.html
Copyright © 2011-2022 走看看