HDU 1035 Robot Motion

来源:互联网 发布:淘宝账户没有等级 编辑:程序博客网 时间:2024/06/05 09:44

Robot Motion

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


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 5NEESWEWWWESSSNWWWW4 5 1SESWEEESNWNWEENEWSEN0 0
 

Sample Output
10 step(s) to exit3 step(s) before a loop of 8 step(s)
 


要求机器人按着给定的矩形是否能走出去,如果能够走出去就打印出走出去一共需要走的步数,不能走出去就打印出在进入循环之前走的步数以及在一个循环中的步数。用一个数组来记录机器人走的步数,具体逻辑见下面的代码:

#include<iostream>#include<cstring>using namespace std;int count;void run(char max[][11],int init[][11],int a,int b,int c){int x=1;bool flage = false; while(init[x][c]==144){init[x][c]=count++;if(max[x][c]=='W'){c-=1;}else if(max[x][c]=='E'){c+=1;}else if(max[x][c]=='S'){x+=1;}else if(max[x][c]=='N'){x-=1;}if(c==0||c==b+1||x==0||x==a+1)    //走出来了 {cout<<count<<" step(s) to exit"<<endl;flage=true;break;}}if(!flage){int loops=count-init[x][c];  //这就计算出了当前几步循环 int go=init[x][c];cout<<go<<" step(s) before a loop of "<<loops<<" step(s)"<<endl;}}int main(){int a,b,c;char max[11][11];int init[11][11];while(cin>>a>>b>>c&&a&&b&&c){count=0;for(int i=0;i<11;i++)for(int j=0;j<11;j++){init[i][j]=144;}for(int i=1;i<=a;i++)for(int j=1;j<=b;j++)cin>>max[i][j];run(max,init,a,b,c);}return 0;}


0 0
原创粉丝点击