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<iostream>
#include<string.h>
using namespace std;
char str[][];
int x[],y[],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==&&n==)break;
cin>>l;
x[]=;
y[]=l-;
memset(str,'\0',sizeof(str));
for(i=;i<m;i++){
for(int j=;j<n;j++)cin>>str[i][j];
}
k=;
while(){
p=x[k];
q=y[k];
f(str[x[k]][y[k]]);
if(p<||p==m||q<||q==n){
cout<<k+<<" step(s) to exit"<<endl;
break;
}
t=;
for(i=;i<k;i++){
if(x[k]==x[i]&&y[k]==y[i]){
t=i;
break;
}
}
if(t!=){
cout<<t<<" step(s) before a loop of "<<k-t<<" step(s)"<<endl;
break;
}
k++;
x[k]=p;
y[k]=q;
}
}
return ;
}

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

#include<iostream>
#include<string.h>
#include<stdio.h>
using namespace std;
char str[][];
int x[][];
int main()
{
int m,n,l;
while(scanf("%d%d",&m,&n)){
if(m==&&n==)break;
scanf("%d",&l);
memset(str,'\0',sizeof(str));
memset(x,,sizeof(x));
int p=,q=l-,k=;
for(int i=;i<m;i++)scanf("%s",str[i]);
while()
{
k++;
if(str[p][q]=='N'&&!x[p][q]){
x[p][q]=k;
p--;
}
else if(str[p][q]=='S'&&!x[p][q]){
x[p][q]=k;
p++;
}
else if(str[p][q]=='E'&&!x[p][q]){
x[p][q]=k;
q++;
}
else if(str[p][q]=='W'&&!x[p][q]){
x[p][q]=k;
q--;
}
else if(x[p][q]){
printf("%d step(s) before a loop of %d step(s)\n",x[p][q]-,k-x[p][q]);
break;
}
else if(p<||q<||p==n||q==m){
printf("%d step(s) to exit\n",k-);
break;
} }
}
return ;
}

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

#include<stdio.h>
#include<string.h>
char map[][];
int t[][];
int main()
{
int n,m,k;
int x,y;
while(scanf("%d%d",&n,&m)!=EOF&&(m+n)){
scanf("%d",&k);
for(int i=;i<n;i++) scanf("%s",&map[i]);
x=;
y=k-;
memset(t,,sizeof(t));
t[x][y]=;
while(){
if(map[x][y]=='E'){
y++;
if(y==m){
printf("%d step(s) to exit\n",t[x][y-]);
break;
}
if(t[x][y]!=){
printf("%d step(s) before a loop of %d step(s)\n",t[x][y]-,t[x][y-]-t[x][y]+);
break;
}
t[x][y]=t[x][y-]+;
}
else if(map[x][y]=='W'){
y--;
if(y<){
printf("%d step(s) to exit\n",t[x][y+]);
break;
}
if(t[x][y]!=){
printf("%d step(s) before a loop of %d step(s)\n",t[x][y]-,t[x][y+]-t[x][y]+);
break;
}
t[x][y]=t[x][y+]+;
}
else if(map[x][y]=='N'){
x--;
if(x<) {
printf("%d step(s) to exit\n",t[x+][y]);
break;
}
if(t[x][y]!=){
printf("%d step(s) before a loop of %d step(s)\n",t[x][y]-,t[x+][y]-t[x][y]+);
break;
}
t[x][y]=t[x+][y]+;
}
else{
x++;
if(x==n){
printf("%d step(s) to exit\n",t[x-][y]);
break;
}
if(t[x][y]!=){
printf("%d step(s) before a loop of %d step(s)\n",t[x][y]-,t[x-][y]-t[x][y]+);
break;
}
t[x][y]=t[x-][y]+;
}
}
}
return ;
}

题不难,注意思路!!!

N - Robot Motion(第二季水)的更多相关文章

  1. F - The Fun Number System(第二季水)

    Description In a k bit 2's complement number, where the bits are indexed from 0 to k-1, the weight o ...

  2. D - Counterfeit Dollar(第二季水)

    Description Sally Jones has a dozen Voyageur silver dollars. However, only eleven of the coins are t ...

  3. S - 骨牌铺方格(第二季水)

    Description          在2×n的一个长方形方格中,用一个1× 2的骨牌铺满方格,输入n ,输出铺放方案的总数.         例如n=3时,为2× 3方格,骨牌的铺放方案有三种, ...

  4. R - 一只小蜜蜂...(第二季水)

    Description          有一只经过训练的蜜蜂只能爬向右侧相邻的蜂房,不能反向爬行.请编程计算蜜蜂从蜂房a爬到蜂房b的可能路线数.         其中,蜂房的结构如下所示.     ...

  5. I - Long Distance Racing(第二季水)

    Description Bessie is training for her next race by running on a path that includes hills so that sh ...

  6. Y - Design T-Shirt(第二季水)

    Description Soon after he decided to design a T-shirt for our Algorithm Board on Free-City BBS, XKA ...

  7. B - Maya Calendar(第二季水)

    Description During his last sabbatical, professor M. A. Ya made a surprising discovery about the old ...

  8. T - 阿牛的EOF牛肉串(第二季水)

    Description          今年的ACM暑期集训队一共有18人,分为6支队伍.其中有一个叫做EOF的队伍,由04级的阿牛.XC以及05级的COY组成.在共同的集训生活中,大家建立了深厚的 ...

  9. E - Number Sequence(第二季水)

    Description A single positive integer i is given. Write a program to find the digit located in the p ...

随机推荐

  1. 嵌入式Linux LED小灯点亮实验

    问:怎么写LED驱动程序? 1.搭建一个字符驱动的框架(上一节已经完成) 2.完善硬件的操作 问:驱动里操作硬件寄存器与单片机操作硬件寄存器有什么不一样的地方? 答:单片机操作的寄存器地址是物理地址, ...

  2. Python学习笔记6(列表生成式)

    1.生成列表 要生成list [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],我们可以用range(1, 11): >>> range(1, 11) [1, 2, 3 ...

  3. 初识KMP

    KMP简介 KMP是一种由Knuth(D.E.Knuth).Morris(J.H.Morris)和Pratt(V.R.Pratt)设计的字符串匹配算法.对目标串T[0:n-1]中查找与之匹配的模式串P ...

  4. 从汇编看c++中含有虚基类对象的析构

    c++中,当继承结构中含有虚基类时,在构造对象时编译器会通过将一个标志位置1(表示调用虚基类构造函数),或者置0(表示不调用虚基类构造函数)来防止重复构造虚基类子对象.如下图菱形结构所示: 当构造类B ...

  5. 飘逸的python - 多条件排序及itemgetter的应用

    曾经客户端的同事用as写一大堆代码来排序,在得知python排序往往只需要一行,惊讶无比,遂对python产生浓厚的兴趣. 之前在做足球的积分榜的时候需要用到多条件排序,如果积分相同,则按净胜球,再相 ...

  6. TRIGGERS_监测系统_多表视图触发器—向原始数据报表中插入数据

    Create Or Replace Trigger trg_view_report  Instead Of Insert or update or delete on view_for_report  ...

  7. 基于VMware的eCos环境编译redboot(脚本配置redboot)

    基于VMware的ecos,redboot及hello world(1)安装请参照[[ecos学习2]wmware运行redboot[方法二]--图形实现配置 ] (2)修改内存布局文件:~/i386 ...

  8. [Head First Python]3. 文件与异常:处理错误

    datafile.txt Man: Is this the right room for an argument? Other Man: I've told you once. Man: No you ...

  9. 负载均衡集群之LVS的DR模型详解(Diretor Routing)

    LVS的默认模型:默认模型DR DR模型原理图--> 在讲DR模型要点之前,需要了解网络的相关知识: 接收的报文拆解顺序:帧(MAC)-->数据包(IP)-->数据报文(port) ...

  10. ListView与CheckBox组合实现单选

    main.xml配置文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns ...