SPOJ-Grid ,水广搜easy bfs
一个水广搜我竟然纠结了这么久,三天不练手生啊,况且我快三个月没练过搜索了。。。
题意:n*m的方格,每个格子有一个数,意味着在此方格上你可以上下左右移动s[x][y]个格子,不能出界。求左上角那个格子到右下角那个格子最少需要走几步。
思路:就是一个队列广搜,开始做一时想不起要用队列,结果用dfs左改右改,还不容易调出来了结果TLE了,我知道清楚标记的话复杂度最高500^4,不T才怪。后来叫队友看了看队友说这不就是水广搜嘛,然后水之。他说的倒是提醒了我,用广搜标记,怎么标记呢,用一个二维数组表示左上角到每个格子最少步数,然后初始化为INF,这样就每次将能到达的几个点加入队列就行了,复杂度O(n)。水之。
这么水的搜索我竟然纠结了近2小时,细思恐极。
const int N=500+10;
char s[N][N];
int w[N][N],n,m;
struct node
{
int x,y;
} Node;
void bfs(int x,int y)
{
queue<node>q;
Node.x=x,Node.y=y;
q.push(Node);
while(!q.empty())
{
node tmp=q.front();
q.pop();
int xx=tmp.x,yy=tmp.y;
if(tmp.x==n-1&&tmp.y==m-1) break;
// printf("%d %d\n",tmp.x,tmp.y);
int x1=xx-(s[xx][yy]-'0'),y1=yy-(s[xx][yy]-'0');
int x2=xx+(s[xx][yy]-'0'),y2=yy+(s[xx][yy]-'0');
// printf("x1=%d x2=%d y1=%d y2=%d %d\n",x1,x2,y1,y2,s[tmp.x][tmp.y]-'0');
if(x1>=0&&x1<n&&w[x1][yy]==INF)//ио
{
w[x1][yy]=w[xx][yy]+1;
Node.x=x1,Node.y=yy;
q.push(Node);
}
if(x2>=0&&x2<n&&w[x2][yy]==INF)//об
{
w[x2][yy]=w[xx][yy]+1;
Node.x=x2,Node.y=yy;
q.push(Node);
}
if(y1>=0&&y1<m&&w[xx][y1]==INF)//вС
{
w[xx][y1]=w[xx][yy]+1;
Node.x=xx,Node.y=y1;
q.push(Node);
}
if(y2>=0&&y2<m&&w[xx][y2]==INF)//ср
{
w[xx][y2]=w[xx][yy]+1;
Node.x=xx,Node.y=y2;
q.push(Node);
}
}
}
int main()
{
while(~scanf("%d%d",&n,&m))
{
for(int i=0; i<N; i++)
for(int j=0; j<N; j++) w[i][j]=INF;
for(int i=0; i<n; i++) scanf("%s",s[i]);
w[0][0]=0;
bfs(0,0);
if(w[n-1][m-1]==INF) printf("-1\n");
else printf("%d\n",w[n-1][m-1]);
}
return 0;
}
SPOJ-Grid ,水广搜easy bfs的更多相关文章
- nyoj 592 spiral grid(广搜)
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=592 解决以下问题后就方便用广搜解: 1.将数字坐标化,10000坐标为(0,0),这样就 ...
- 深搜(DFS)广搜(BFS)详解
图的深搜与广搜 一.介绍: p { margin-bottom: 0.25cm; direction: ltr; line-height: 120%; text-align: justify; orp ...
- 什么时候用深搜(dfs)什么时候用广搜(bfs)(转)
1.BFS是用来搜索最短径路的解是比较合适的,比如求最少步数的解,最少交换次数的解,因为BFS搜索过程中遇到的解一定是离根最近的,所以遇到一个解,一定就是最优解,此时搜索算法可以终止.这个时候不适宜使 ...
- 图的基本操作(基于邻接矩阵):图的构造,深搜(DFS),广搜(BFS)
#include <iostream> #include <stdio.h> #include <cstdlib> #include <cstring> ...
- 图的基本操作(基于邻接表):图的构造,深搜(DFS),广搜(BFS)
#include <iostream> #include <string> #include <queue> using namespace std; //表结点 ...
- 深搜(DFS)与广搜(BFS)区别
最近做了不少的搜索题,时而用到DFS时而用到BFS,这里对两种搜索方法做一个总结. 广度优先搜索算法(Breadth-First-Search,缩写为 BFS),是一种利用队列实现的搜索算法.简单来说 ...
- hdu 1242:Rescue(BFS广搜 + 优先队列)
Rescue Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other) Total Submis ...
- hdu 1195:Open the Lock(暴力BFS广搜)
Open the Lock Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tot ...
- poj3126 Prime Path 广搜bfs
题目: The ministers of the cabinet were quite upset by the message from the Chief of Security stating ...
随机推荐
- 【Linux】使用Cockpit进行主机管理
Cockpit 进行主机监控 官网文档: https://cockpit-project.org/running.html 版本信息 针对Red Hat [root@master ~]# cat /e ...
- PL/SQL 多表关联UPDATE
假设有两个表A和B,A表字段a,b,c,d,B表字段b,e,f,两表的关联条件是字段b,现在想做个data patch,欲将B表中的字段e的值patch给A表的字段c. 有如下两种方法: 1 upda ...
- MySQL的information_schema的介绍(转)
转自:http://www.cnblogs.com/hzhida/archive/2012/08/08/2628826.html, 大家在安装或使用MYSQL时,会发现除了自己安装的数据库以外,还有一 ...
- linux各文件夹的作用(转)
转自:http://www.cnblogs.com/amboyna/archive/2008/02/16/1070474.html linux下的文件结构,看看每个文件夹都是干吗用的/bin 二进制可 ...
- inputStream 与 String 的互相转换
一. String 转换为InputStream String str = "String 与 inputStream转换"; InputStream ins1 = new Byt ...
- UISearchBar clearButton
When the searchBar:textDidChange: method of the UISearchBarDelegate gets called because of the user ...
- python实现微信打飞机游戏(by crossin)
# -*- coding: utf-8 -*- import pygame from sys import exit import random pygame.init() screen = pyga ...
- 如何在Ubuntu 16.04上安装Apache Web服务器
转载自:https://www.howtoing.com/how-to-install-the-apache-web-server-on-ubuntu-16-04 介绍 Apache HTTP服务器是 ...
- dfs染色法判定二分图
#include<iostream> #include<cstring> using namespace std; ][],color[],n; int dfs(int x,i ...
- 用navcat编写定时任务调用存储过程
最近项目需要改动比较大,数据库结构也有所改变,这时就需要转移旧数据到新库中 第一时间想到的是用代码操作,由于两个库表结构不同,实体什么的得需要重新生成 并编写转移代码,这将是很大的工作量: 然后就想着 ...