博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
N - Robot Motion(第二季水)
阅读量:7079 次
发布时间:2019-06-28

本文共 3580 字,大约阅读时间需要 11 分钟。

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
                

Sample Output

10 step(s) to exit 3 step(s) before a loop of 8 step(s)
 
 
这个题错的一塌糊涂
刚开始写的代码 不知道哪里有错 ,结果错误
#include
#include
using namespace std;char str[1000][1000];int x[100],y[100],p,q;void f(char ch){ if(ch=='N')p--; if(ch=='S')p++; if(ch=='E')q++; if(ch=='W')q--;}int main(){ int m,n,l,i,k,t; while(cin>>m>>n){ if(m==0&&n==0)break; cin>>l; x[0]=0; y[0]=l-1; memset(str,'\0',sizeof(str)); for(i=0;i
>str[i][j]; } k=0; while(1){ p=x[k]; q=y[k]; f(str[x[k]][y[k]]); if(p<0||p==m||q<0||q==n){ cout<
<<" step(s) to exit"<

检查半天没有结果,就换一种方法来写,结果 超时

#include
#include
#include
using namespace std;char str[100][100];int x[100][100];int main(){ int m,n,l; while(scanf("%d%d",&m,&n)){ if(m==0&&n==0)break; scanf("%d",&l); memset(str,'\0',sizeof(str)); memset(x,0,sizeof(x)); int p=0,q=l-1,k=0; for(int i=0;i

 

最后最后的正确代码,分四个情况,每次移动后都判断是否越界,不越界就走下一步,越界就分情况输出结果

#include
#include
char map[100][100];int t[100][100];int main(){ int n,m,k; int x,y; while(scanf("%d%d",&n,&m)!=EOF&&(m+n)){ scanf("%d",&k); for(int i=0;i

题不难,注意思路!!!

转载于:https://www.cnblogs.com/farewell-farewell/p/5199067.html

你可能感兴趣的文章
poj1006生理周期(中国剩余定理)
查看>>
Linux & Oracle目录说明
查看>>
多线程、多进程区别
查看>>
keepalived的搭建
查看>>
spring-boot和redis的缓存使用
查看>>
linux中的中断处理方法
查看>>
yum安装haproxy
查看>>
nodeJS之fs文件系统
查看>>
矩阵元发布新一代区块链安全计算架构
查看>>
jira邮件自动提醒功能配置
查看>>
压力测试工具收集
查看>>
AIX6.1 升级OpenSSH(摘自网络)
查看>>
CPU负载观察及调优方法
查看>>
PV与并发之间换算的算法换算公式
查看>>
二叉树
查看>>
利用SSL/TLS中的SNI同一ip不同域名的F5vs配置解决方案
查看>>
解决libmcrypt was not found,无法安装mcrypt
查看>>
with管理文件操作
查看>>
使用FeignClient调用远程服务时整合本地方法
查看>>
win基础
查看>>