zoukankan      html  css  js  c++  java
  • 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;
    }
    

     

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

  • 相关阅读:
    蚂蚁金服井贤栋:用技术联手金融机构,形成服务小微的生态合力
    蚂蚁金服 Service Mesh 渐进式迁移方案|Service Mesh Meetup 实录
    蚂蚁金服“定损宝”现身AI顶级会议NeurIPS
    报名 | 蚂蚁金服ATEC科技大会 · 上海:数字金融新原力
    前沿 | 中国中小银行都是如何展开数字化转型的?
    盘点:2018年双11背后的蚂蚁核心技术
    构筑敏捷能力中心,打造下一代数字银行“操作系统”!
    客户故事:4家银行如何打造新一代移动金融中心
    干货 | 金融级互联网产品持续交付的挑战与应对
    性能跃升50%!解密自主研发的金融级分布式关系数据库OceanBase 2.0
  • 原文地址:https://www.cnblogs.com/juechen/p/4721970.html
Copyright © 2011-2022 走看看