hdoj 1035 Robot Motion
Robot Motion
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7974 Accepted Submission(s):
3685
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.
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.
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.
#include<stdio.h>
#include<string.h>
#define MAX 110
char map[MAX][MAX];//所要走的地图
int vis[MAX][MAX];//用来记录当前走了多少步
int n,m,t;
int x2,y2;//用于记录当前步的上一步
void dfs(int x1,int y1)
{
if(x1>n||x1<1||y1<1||y1>m)//如果超出地图范围则证明已经走出去了
{
printf("%d step(s) to exit\n",vis[x2][y2]);
return ;
}
else if(vis[x1][y1])//如果不为0则证明此处已经走过形成环
{
printf("%d step(s) before a loop of %d step(s)\n",vis[x1][y1]-1,vis[x2][y2]-vis[x1][y1]+1);
return ;
}
vis[x1][y1]=vis[x2][y2]+1;//当前走的步数是上一步加1
x2=x1;y2=y1;
if(map[x1][y1]=='W')//向左走
y1-=1;
else if(map[x1][y1]=='S')//向下走
x1+=1;
else if(map[x1][y1]=='E')//向右走
y1+=1;
else if(map[x1][y1]=='N')//向上走
x1-=1;
dfs(x1,y1);
}
int main()
{
int j,i,s,k;
int x1,x2,y1,y2;
while(scanf("%d%d",&n,&m)&&n!=0&&m!=0)
{
scanf("%d",&t);
for(i=1;i<=n;i++)
{
getchar();
for(j=1;j<=m;j++)
{
scanf("%c",&map[i][j]);
}
}
x1=1;y1=t;//起点
x2=x1;y2=y1;
memset(vis,0,sizeof(vis));//数组清零
dfs(x1,y1);
}
return 0;
}
hdoj 1035 Robot Motion的更多相关文章
- HDOJ(HDU).1035 Robot Motion (DFS)
HDOJ(HDU).1035 Robot Motion [从零开始DFS(4)] 点我挑战题目 从零开始DFS HDOJ.1342 Lotto [从零开始DFS(0)] - DFS思想与框架/双重DF ...
- [ACM] hdu 1035 Robot Motion (模拟或DFS)
Robot Motion Problem Description A robot has been programmed to follow the instructions in its path. ...
- hdu 1035 Robot Motion(模拟)
Problem Description A robot has been programmed to follow the instructions in its path. Instructions ...
- hdu 1035 Robot Motion(dfs)
虽然做出来了,还是很失望的!!! 加油!!!还是慢慢来吧!!! >>>>>>>>>>>>>>>>> ...
- 题解报告:hdu 1035 Robot Motion(简单搜索一遍)
Problem Description A robot has been programmed to follow the instructions in its path. Instructions ...
- HDU 1035 Robot Motion(dfs + 模拟)
嗯... 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1035 这道题比较简单,但自己一直被卡,原因就是在读入mp这张字符图的时候用了scanf被卡. ...
- (step 4.3.5)hdu 1035(Robot Motion——DFS)
题目大意:输入三个整数n,m,k,分别表示在接下来有一个n行m列的地图.一个机器人从第一行的第k列进入.问机器人经过多少步才能出来.如果出现了循环 则输出循环的步数 解题思路:DFS 代码如下(有详细 ...
- HDU-1035 Robot Motion
http://acm.hdu.edu.cn/showproblem.php?pid=1035 Robot Motion Time Limit: 2000/1000 MS (Java/Others) ...
- hdu1035 Robot Motion (DFS)
Robot Motion Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Tot ...
随机推荐
- css3实现垂直居中,水平
.box{ text-align:center; } .content{ margin-top:50%; transform:translateY(-50%);/**沿Y轴移动**/ } <di ...
- ODBC方式连接Informix数据库
公司某个报表系统使用Informix数据库,在谋划使用Perl语言写数据采集程序后,花费了很多时间建立Perl访问Informix连接.恰巧Windows下ActivePerl的CPAN中又没有DBD ...
- Python 函数式编程学习
描述:通过将函数作为参数,使得功能类似的函数实现可以整合到同一个函数. Before def getAdd(lst): result = 0 for item in lst: result += it ...
- 【WPF】Dispatcher及线程操作
WPF 应用程序启动后,会有两个线程: 1. 一个是用来处理UI呈现(处理UI的请求,比如输入和展现等操作). 2. 一个用来管理 UI的 (对UI元素及整个UI进行管理). 像Winform一样,W ...
- 2016030401 - java性能优化建议
转载自:http://www.open-open.com/lib/view/open1399884636989.html#_label20 1.没有必要时不要使用静态变量 使用静态变量的目的是提高程序 ...
- Navigation学习笔记
***************************** 使用storyboard导航********************************* storyboard方式相对简单. 在弹出来 ...
- 一个matlab数字图像处理程序的解释
clc; %clc是清除command window里的内容 clear all; %clear是清除workspace里的变量 close all; %close all来关闭所有已经打开的图像窗口 ...
- POJ 2002 Squares 哈希
题目链接: http://poj.org/problem?id=2002 #include <stdio.h> #include <string.h> ; struct Has ...
- 寡人写的第一个HTML5页面
好吧,其实是抄来的 <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"/> &l ...
- Hard Life
poj3155:http://poj.org/problem?id=3155 题意:最大密度子图的模板题. 题解:直接看代码. /* 题意简述一个公司有n个人,给出了一些有冲突的人的对数(u,v),所 ...