一个普通的bfs 如果不看样例和input的解释...

四个0真是神样例 又被input误导 以为每个点都按顺序有标号 传送门的终点给的是一个点的标号

然后结果是什么呢?无尽的runtime error...持续了半个训练赛的runtime error..

然后其实传送门的终点给的是坐标 莫忘-1

然后vector莫忘清空

然后当bfs开始扫传送门的时候莫忘 b是不停在变的(至少在我写的程序中是) 所以for循环中v[][]括号中的应该是从队列中取出来的node的坐标

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<math.h>
#include<map>
#include<vector>
#include<queue>
using namespace std;
char ma[505][505];
struct node
{
int x,y,t;
};
int n,m;
vector <node >v[505][505];
bool vis[505][505];
bool check(node a)
{
if(a.x>=0&&a.x<n&&a.y>=0&&a.y<m&&ma[a.x][a.y]!='#'&&vis[a.x][a.y]==true)
return true;
return false;
}
int dx[4]={0,0,-1,1};
int dy[4]={1,-1,0,0};
int sx,sy;
void bfs()
{
node te;
te.x=sx;
te.y=sy;
te.t=0;
queue<node >q;
q.push(te);
vis[te.x][te.y]=false;
node b;
node c;
while(!q.empty())
{
te=q.front();
q.pop();
if(ma[te.x][te.y]=='t')
{
printf("%d\n",te.t);
return ;
}
for(int i=0;i<5;i++)
{
if(i<4)
{
b=te;
b.t++;
b.x+=dx[i];
b.y+=dy[i];
if(check(b))
{
q.push(b);
vis[b.x][b.y]=false;
}
}
else
{
b=te;
b.t++;
node f=b;
for(int k=0;k<v[b.x][b.y].size();k++)
{
c=v[b.x][b.y][k];
f=b;
f.x=c.x;
f.y=c.y;
if(check(f))
{
q.push(f);
vis[f.x][f.y]=false;
}
}
}
}
}
}
int main(){
while(~scanf("%d%d",&n,&m))
{
for(int i=0;i<n;i++)
for(int k=0;k<m;k++)
{
vis[i][k]=true;
v[i][k].clear();
}
for(int i=0;i<n;i++)
{
scanf("%s",ma[i]);
}
for(int i=0;i<n;i++)
{
for(int k=0;k<m;k++)
{
int z;
scanf("%d",&z);
for(int j=1;j<=z;j++)
{
int x,y;
scanf("%d%d",&x,&y);
node te;
te.x=x-1;
te.y=y-1;
v[i][k].push_back(te);
}
}
}
bool shengshi=false;
for(int i=0;i<n;i++)
{
for(int k=0;k<m;k++)
{
if(ma[i][k]=='s')
{
shengshi=true;
sx=i;
sy=k;
break;
}
}
if(shengshi)
break;
}
bfs();
}
}

  

FZU 2028 BFS+vector的更多相关文章

  1. FZU 2028 时空门问题

    题目链接:时空门问题 简单bfs,每个格子移动的方式除了上下左右,还有时空门,开始想着用邻接表保存每个点能通过时空门到达的点就ok了.很快的敲出来,很快的WA了.长久的dbug并没有发现error.然 ...

  2. FZU - 2150 bfs [kuangbin带你飞]专题一

    题意:两个人玩很变态的游戏,将一个草坪的某两个点点燃,点燃的草坪可以向上下左右四个方向扩散,问能否将整块草坪上面的草都点燃.如果能,输出最短时间(^_^他们就能玩更变态的游戏了),如果不能,输出-1. ...

  3. FZU 2092 bfs+记忆化搜索

    晚上团队训练赛的题 和普通bfs不同的是 这是同时操纵人与影子两个单位进行的bfs 由于可能发生人和影子同时接触水晶 所以不可以分开操作 当时使用node记录人和影子的位置 然后进行两重for循环来分 ...

  4. FZU 2124 bfs+vis记录

    第一次团队训练赛的题 自己看完题没看到不能用舌头吃道具..以为是什么贪心混合bfs..果断放弃..悄悄的背锅了 然后其实比较简单 只是利用vis记录的时候要分两种状态记录 有没有道具 每到一个地方 就 ...

  5. fzu 2150(bfs)

     Problem 2150 Fire Game Accept: 693    Submit: 2657 Time Limit: 1000 mSec    Memory Limit : 32768 KB ...

  6. DFS & BFS

    DFS 深度优先 BFS 广度优先 DFS或者BFS都是在联通区域内遍历节点的方法 用在二叉树上DFS有preOreder,inOrder,postOrder,BFS就是层次遍历. 在二叉树上的节点, ...

  7. [LeetCode] Combination Sum (bfs)

    Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C wher ...

  8. HDU 2433 Travel (最短路,BFS,变形)

    题意: 给出一个图的所有边,每次从图中删除一条边,求任意点对的路径总和(求完了就将边给补回去).(有重边) 思路: #include <bits/stdc++.h> using names ...

  9. [LeetCode] BFS解决的题目

    一.130  Surrounded Regions(https://leetcode.com/problems/surrounded-regions/description/) 题目: 解法: 这道题 ...

随机推荐

  1. 一、HTML和CSS基础--网页布局--实践--导航条菜单的制作

    案例一:导航菜单的制作 垂直菜单

  2. grep -n 显示行号

    [root@86 ~]# grep -n "StartDiscoverers" /usr/local/zabbix/etc/zabbix_server.conf 176:### O ...

  3. mysql 数据库获取当前时间

    mysql> select now(); +---------------------+ | now() | +---------------------+ | 2016-05-27 17:34 ...

  4. .net学习笔记---HttpRuntime类

    HttpRuntime在ASP.NET处理请求中负责的是创建HttpContext对象以及调用HttpApplicationFactory创建HttpApplication. 其定义如下: publi ...

  5. PHP 5.4中的traits特性

    Trait 是 PHP5. 中的新特性,是 PHP 多重继承的一种解决方案.例如,需要同时继承两个 Abstract Class, 这将会是件很麻烦的事情,Trait 就是为了解决这个问题. 简单使用 ...

  6. struts乱码问题

    我觉得很有必要记录一下,在我搜便了网上乱码问题的解决方案无果之后几乎绝望. 一定要在提交的form 加上 methd =  post

  7. 使用iterator出现的死循环

    public static void main(String[] args) { List<String> list = new ArrayList<String>(); li ...

  8. Android 编程下 Using ViewPager for Screen Slides

    (参考官方文档:Using ViewPager for Screen Slides | Android Developers)

  9. C#将DataTable转换成list的方法

    本文实例讲述了C#将DataTable转换成list及数据分页的方法.分享给大家供大家参考.具体如下: /// <summary>   /// 酒店评论列表-分页  /// </su ...

  10. BFS+模拟 ZOJ 3865 Superbot

    题目传送门 /* BFS+模拟:dp[i][j][p] 表示走到i,j,方向为p的步数为多少: BFS分4种情况入队,最后在终点4个方向寻找最小值:) */ #include <cstdio&g ...