poj 1573 Robot Motion 模拟

来源:互联网 发布:python 接收上传图片 编辑:程序博客网 时间:2024/06/01 10:23

Robot Motion
Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 14135 Accepted: 6800

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 0

Sample Output

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

Source

Mid-Central USA 1999

[Submit]   [Go Back]   [Status]   [Discuss]


ac代码

#include <stdio.h> #include <cmath>#include <cstring>#include <algorithm>using namespace std;int vis[20][20];char mm[20][20];int n,m,s;int main(){while(scanf("%d%d%d",&n,&m,&s)&&(n!=0 || m!=0 || s!=0)){for(int i=0;i<n;i++){scanf("%s",mm[i]);}/*for(int i=0;i<n;i++){printf("%s\n",mm[i]);}*/int x=0,y=s-1;memset(vis,0,sizeof(vis));int stp=0,flag=0,stp1=0;while(1){vis[x][y]=1;stp++;if(mm[x][y]=='N'){x--;}else if(mm[x][y]=='S'){x++;}else if(mm[x][y]=='E'){y++;}else if(mm[x][y]=='W'){y--;}if(x<0 || x>=n || y<0 || y>=m){flag=1;break ;}else if(vis[x][y]==1){int ans_x=x,ans_y=y;stp1=0;while(1){stp1++;if(mm[x][y]=='N'){x=x-1;}else if(mm[x][y]=='S'){x=x+1;}else if(mm[x][y]=='E'){y=y+1;}else if(mm[x][y]=='W'){y=y-1;}if(x==ans_x && y==ans_y){break ;}}break ;}}if(flag==1)printf("%d step(s) to exit\n",stp);elseprintf("%d step(s) before a loop of %d step(s)\n",stp-stp1,stp1);}return 0;}




原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 汽车买贵了2万多怎么办 宝宝眼皮被蚊子咬肿了怎么办 一岁宝宝撞头咬到舌头有伤口怎么办 二胎快生了老大特别粘人怎么办 生二胎不舍得大宝跟奶奶睡怎么办 怀二胎婆婆不帮忙带孩子怎么办 注册过的高铁用户名忘了怎么办 硕士延期毕业找好的工作怎么办 竞彩足球绑定信用卡提不了现怎么办 qq启动出现问题请卸载重装怎么办 u盘有文件打开后却是空的怎么办 王者荣耀不记得所在的区服怎么办 交易猫出售游戏账号是微信号怎么办 网银密码输错3次怎么办 无线网卡信号很好就是没网速怎么办 红米2a忘了登陆账号怎么办 qq封了密保手机没用了怎么办 乐视手机重置账号密码忘了怎么办 此版本的ios不支持银联怎么办 单反m档拍出来照片是黑色怎么办 从兴趣部落老发骚扰信息怎么办 在厂里辞一个月厂长不批怎么办 在厂里做管理被员工恐吓怎么办 在葡京娱乐输了很多钱怎么办 从珠海入镜澳门北京往返签注怎么办 艾艾灸灸了一身小子子怎么办? 微信视频已过期或已清理怎么办 视频已过期或已被清理怎么办 小孩作业不会老婆天天吵骂打怎么办 苹果手机在太阳下屏幕变暗怎么办 斗鱼的鱼丸竞猜主播结算了怎么办 附近有个小姐姐想加她好友怎么办 孩子出现听别人说话语速很快怎么办 苹果手机上的邮件删了怎么办 手机qq邮箱独立密码忘记了怎么办 哺乳期吃了人参回奶了怎么办? 扣扣邮箱里的邮件过期了怎么办 一体机的管理员账号被删除了怎么办 手机里的邮箱重要吗删除了怎么办 华为荣耀10账号邮箱忘记了怎么办 大陆微信号在台湾登录不上怎么办