• Robot Motion 分类: POJ 2015-06-29 13:45 11人阅读 评论(0) 收藏


    Robot Motion
    Time Limit: 1000MS
    Memory Limit: 10000K
    Total Submissions: 11262
    Accepted: 5482

    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)
    开始是将vis[0][star-1]=0,WA了好几次,后来想明白了,有循环到开始的情况,如果设置为零则无法判断,果断改为1了
    
    #include <iostream>
    #include <cstring>
    #include <cstdio>
    #include <cmath>
    #include <string>
    #include <stack>
    #include <queue>
    #include <vector>
    #include <algorithm>
    using namespace std;
    
    const int Max=1100000;
    
    char Map[1100][1100];
    int vis[1100][1100];
    int n,m,star;
    int main()
    {
        while(scanf("%d %d %d",&n,&m,&star))
        {
            if(!n&&!m)
            {
                break;
            }
            scanf("%d",&star);
            for(int i=0; i<n; i++)
            {
                scanf("%s",Map[i]);
            }
            memset(vis,0,sizeof(vis));
            vis[0][star-1]=1;
            int u=0;
            int v=star-1;
            while(1)
            {
                if(Map[u][v]=='N')
                {
                    if(u-1==-1)
                    {
                        printf("%d step(s) to exit
    ",vis[u][v]);
                        break;
                    }
                    else if(vis[u-1][v])
                    {
                        printf("%d step(s) before a loop of %d step(s)
    ",vis[u-1][v]-1,vis[u][v]+1-vis[u-1][v]);
                        break;
                    }
    
                    vis[u-1][v]=vis[u][v]+1;
                    u--;
    
                }
                else if(Map[u][v]=='S')
                {
                    if(u+1==n)
                    {
                        printf("%d step(s) to exit
    ",vis[u][v]);
                        break;
                    }
                    else if(vis[u+1][v])
                    {
                        printf("%d step(s) before a loop of %d step(s)
    ",vis[u+1][v]-1,vis[u][v]+1-vis[u+1][v]);
                        break;
                    }
    
                    vis[u+1][v]=vis[u][v]+1;
                    u++;
    
                }
                else if(Map[u][v]=='E')
                {
                    if(v+1==m)
                    {
                        printf("%d step(s) to exit
    ",vis[u][v]);
                        break;
                    }
                    else if(vis[u][v+1])
                    {
                        printf("%d step(s) before a loop of %d step(s)
    ",vis[u][v+1]-1,vis[u][v]+1-vis[u][v+1]);
                        break;
                    }
    
                    vis[u][v+1]=vis[u][v]+1;
                    v++;
    
                }
                else if(Map[u][v]=='W')
                {
                    if(v-1==-1)
                    {
                        printf("%d step(s) to exit
    ",vis[u][v]);
                        break;
                    }
                    else if(vis[u][v-1])
                    {
                        printf("%d step(s) before a loop of %d step(s)
    ",vis[u][v-1]-1,vis[u][v]+1-vis[u][v-1]);
                        break;
                    }
    
                    vis[u][v-1]=vis[u][v]+1;
                    v--;
    
                }
            }
        }
        return 0;
    }
    

     

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    PAT (Basic Level) Practice 1020 月饼 (25分)
    PAT (Basic Level) Practice 1019 数字黑洞 (20分) (string、int转换+sort排序)
    PAT (Basic Level) Practice 1018 锤子剪刀布 (20分) (三个数比大小)
    PAT (Basic Level) Practice 1017 A除以B (20分) (大数除法+大神简洁20行代码)
    PAT (Basic Level) Practice 1016 部分A+B (15分)
    PAT (Basic Level) Practice 1015 德才论 (25分) (大量IO的节省时间)
    PAT (Basic Level) Practice 1014 福尔摩斯的约会 (20分) (string的find函数中没查找到返回s.npos)
    PAT (Basic Level) Practice (中文) 1013 数素数 (20分)
    XSY1762
    XSY1602
  • 原文地址:https://www.cnblogs.com/juechen/p/4721970.html
Copyright © 2020-2023  润新知