poj 1573(搜索)
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 12351 | Accepted: 5982 |
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
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
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 0
Sample Output
10 step(s) to exit
3 step(s) before a loop of 8 step(s)
Source
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<math.h>
#include<queue>
#include<iostream>
using namespace std;
char graph[][];
int n,m,k;
int vis[][];
struct Node
{
int x,y;
int step;
} s;
bool check(int x,int y)
{
if(x<||x>=n||y<||y>=m) return false;
return true;
}
void bfs()
{
memset(vis,,sizeof(vis));
Node s;
s.x = ,s.y = k-,s.step=;
queue<Node> q;
q.push(s);
vis[s.x][s.y] = ;
while(!q.empty())
{
Node now = q.front();
q.pop();
Node next;
if(graph[now.x][now.y]=='W')
{
next.x = now.x;
next.y = now.y-;
}
if(graph[now.x][now.y]=='S')
{
next.x = now.x+;
next.y = now.y;
}
if(graph[now.x][now.y]=='E')
{
next.x = now.x;
next.y = now.y+;
}
if(graph[now.x][now.y]=='N')
{
next.x = now.x-;
next.y = now.y;
}
next.step = now.step+;
if(check(next.x,next.y))
{
if(vis[next.x][next.y]) /// 如果被访问过了,则进入了循环
{
printf("%d step(s) before a loop of %d step(s)\n",vis[next.x][next.y]-,next.step-vis[next.x][next.y]);
return ;
}
else
{
vis[next.x][next.y] = next.step;
q.push(next);
}
}
else
{
printf("%d step(s) to exit\n",next.step-);
return;
} }
return;
} int main()
{
int t = ;
while(scanf("%d%d%d",&n,&m,&k)!=EOF&&n+m+k)
{
for(int i=; i<n; i++){
scanf("%s",graph[i]);
}
bfs();
}
return ;
}
还写了个DFS的。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<math.h>
#include<queue>
#include<iostream>
using namespace std;
int graph[][];
int n,m,k;
int vis[][];
struct Node
{
int x,y;
int step;
}s;
bool check(int x,int y)
{
if(x<||x>=n||y<||y>=m) return false;
return true;
}
void dfs(int x,int y,int cnt){
vis[x][y] = cnt;
int nextx,nexty,step;
if(graph[x][y]==){
nextx = x;
nexty = y - ;
}
if(graph[x][y]==){
nextx = x+;
nexty = y;
}
if(graph[x][y]==){
nextx = x;
nexty = y + ;
}
if(graph[x][y]==){
nextx = x-;
nexty = y;
}
step = cnt+;
if(check(nextx,nexty)){
if(vis[nextx][nexty]){
printf("%d step(s) before a loop of %d step(s)\n",vis[nextx][nexty]-,step-vis[nextx][nexty]);
return;
}else{
dfs(nextx,nexty,step);
}
}else{
printf("%d step(s) to exit\n",step-);
}
}
int main()
{
int t = ;
while(scanf("%d%d%d",&n,&m,&k)!=EOF&&n+m+k)
{
char s[];
for(int i=; i<n; i++){
scanf("%s",s);
for(int j=;j<m;j++){
if(s[j]=='W') graph[i][j]=;
if(s[j]=='S') graph[i][j]=;
if(s[j]=='E') graph[i][j]=;
if(s[j]=='N') graph[i][j]=;
}
}
memset(vis,,sizeof(vis));
dfs(,k-,);
}
return ;
}
poj 1573(搜索)的更多相关文章
- 模拟 POJ 1573 Robot Motion
题目地址:http://poj.org/problem?id=1573 /* 题意:给定地图和起始位置,robot(上下左右)一步一步去走,问走出地图的步数 如果是死循环,输出走进死循环之前的步数和死 ...
- POJ 1573 Robot Motion(BFS)
Robot Motion Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 12856 Accepted: 6240 Des ...
- POJ 1573 Robot Motion(模拟)
题目代号:POJ 1573 题目链接:http://poj.org/problem?id=1573 Language: Default Robot Motion Time Limit: 1000MS ...
- catch that cow POJ 3278 搜索
catch that cow POJ 3278 搜索 题意 原题链接 john想要抓到那只牛,John和牛的位置在数轴上表示为n和k,john有三种移动方式:1. 向前移动一个单位,2. 向后移动一个 ...
- [Vjudge][POJ][Tony100K]搜索基础练习 - 全题解
目录 POJ 1426 POJ 1321 POJ 2718 POJ 3414 POJ 1416 POJ 2362 POJ 3126 POJ 3009 个人整了一些搜索的简单题目,大家可以clone来练 ...
- poj 2251 搜索
Dungeon Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 13923 Accepted: 5424 D ...
- poj 1011 搜索减枝
题目链接:http://poj.org/problem?id=1011 #include<cstdio> #include<cstring> #include<algor ...
- 生日蛋糕 POJ - 1190 搜索 数学
http://poj.org/problem?id=1190 题解:四个剪枝. #define _CRT_SECURE_NO_WARNINGS #include<cstring> #inc ...
- poj 2531 搜索剪枝
Network Saboteur Time Limit: 2000 MS Memory Limit: 65536 KB 64-bit integer IO format: %I64d , %I64u ...
随机推荐
- ipmitool的使用
https://www.ibm.com/developerworks/cn/linux/l-ipmi/index.html
- 收集的免费API接口
1.IP地址调用接口 这是淘宝的IP调用API http://ip.taobao.com/service/getIpInfo.php?ip=$ip 返回值:{"code":0,&q ...
- Python基础:字符串(string)
字符串的常用操作 字符串与数组一样,支持索引操作.切片与遍历 索引.切片操作: name = 'jason' name[0] 'j' name[1:3] 'as' 遍历: for char in na ...
- python3.6 取整除法
python3.6 中取整除法运算逻辑如下: d 非零,那么商 q 满足这样的关系: a = qd + r ,且0 ≤ r n1=7//3 #7 = 3*2 +1 n2=-6.1//3 #-7 = 3 ...
- 为什么要用 ORM? 和 JDBC 有何不一样?
orm是一种思想,就是把object转变成数据库中的记录,或者把数据库中的记录转变objecdt,我们可以用jdbc来实现这种思想,其实,如果我们的项目是严格按照oop方式编写的话,我们的jdbc程序 ...
- ACM 广度优化搜索算法总结
广度优化搜索算法的本质:要求每个状态不能重复,这就需要我们:第一次先走一步可以到达的状态,如果还没有找到答案,就需要我们走到两步可以到达的状态.依次下去 核心算法:队列 基本步骤: ...
- UVa 10110 Light, more light
开始所有的灯是灭的,不过我们只关心最后一个灯. 在第i次走动时,只有编号为i的倍数的灯的状态才会改变. 也就是说n有偶数个约数的时候,最后一个灯的状态不会改变,也就是灭的. n有奇数个约数的时候也就是 ...
- NetCore 2.0 应用程序在centos 7上通过docker发布
一 安装netcore 2.0 SDK 在centos 上面安装netcore 2.0 与window上面是不太一样的,注意,linux是不支持同时安装两个版本的.netcore SDK的,由于我之 ...
- python 学习分享-字典篇
python字典(Dictionary) dict是无序的 key必须是唯一切不可变的 a={'key1':'value1','key2':'value2'} 字典的增删改查 a['key3']='v ...
- JAVA调用oracle存储过程实例
1.创建添加存储过程 CREATEORREPLACEPROCEDURE stu_proc(v_id INNUMBER, v_name INVARCHAR2, v_age INNUMBER) AS BE ...