zoukankan      html  css  js  c++  java
  • 【POJ】[1573]Robot Motion

    Robot Motion

    Time Limit: 1000MS Memory Limit: 10000K

    Description

    1573_1.jpg
    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 areN 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)

    直接按照题目要求进行操作就好 记录当前位置是第几步 如果当前位置已经有记录 说明已经被走过 也就是进入了循环 如果有越界说明已经走出
    #include<stdio.h>
    char map[120][120];
    int cnt[120][120];
    int n,m,resx,resy;
    bool win=false;
    int move(int x,int y,int mcnt) {
    //  printf("%d-%d-%c
    ",x,y,map[x][y]);
        if(x<0||x==n||y<0||y==m) {
            win=true;
            return mcnt-1;
        }
        if(cnt[x][y]) {
            win=false;
            resx=x;
            resy=y;
            return mcnt-1;
        }
        cnt[x][y]=mcnt;
        if(map[x][y]=='N')
            return move(x-1,y,mcnt+1);
        else if(map[x][y]=='S')
            return move(x+1,y,mcnt+1);
        else if(map[x][y]=='W')
            return move(x,y-1,mcnt+1);
        else if(map[x][y]=='E')
            return move(x,y+1,mcnt+1);
    }
    int main() {
        int k;
        while(scanf("%d %d %d",&n,&m,&k),n||m||k) {
            getchar();
            for(int i=0; i<n; i++) {
                for(int j=0; j<m; j++) {
                    cnt[i][j]=0;
                    scanf("%c",&map[i][j]);
                }
                getchar();
            }
            int res=move(0,k-1,1);
            if(win)
                printf("%d step(s) to exit
    ",res);
            else
                printf("%d step(s) before a loop of %d step(s)
    ",cnt[resx][resy]-1,res-cnt[resx][resy]+1);
        }
        return 0;
    }

    题目地址:【POJ】[1573]Robot Motion

    查看原文:http://www.boiltask.com/blog/?p=1901
  • 相关阅读:
    排序算法之希尔排序
    javascript Set data structures
    javascript Dictionary data structures
    javascript linkedlist data structures
    关于Java Collections的几个常见问题
    java NIO中的buffer和channel
    编写一个程序,开启 3 个线程,这三个线程的 ID 分别为 A、B、C,每个线程将自己的 ID 在屏幕上打印 10 遍,要求输出的结果必须按顺序显示。如:ABCABCABC…… 依次递归
    Java多线程之Callable接口的实现
    Java并发:volatile内存可见性和指令重排
    Lock和synchronized的区别和使用
  • 原文地址:https://www.cnblogs.com/BoilTask/p/12569462.html
Copyright © 2011-2022 走看看