Description

Nemo is a naughty boy. One day he went into the deep sea all by himself. Unfortunately, he became lost and couldn't find his way home. Therefore, he sent a signal to his father, Marlin, to ask for help. 
After checking the map, Marlin found that the sea is like a labyrinth with walls and doors. All the walls are parallel to the X-axis or to the Y-axis. The thickness of the walls are assumed to be zero. 
All the doors are opened on the walls and have a length of 1. Marlin cannot go through a wall unless there is a door on the wall. Because going through a door is dangerous (there may be some virulent medusas near the doors), Marlin wants to go through as few doors as he could to find Nemo. 
Figure-1 shows an example of the labyrinth and the path Marlin went through to find Nemo. 

We assume Marlin's initial position is at (0, 0). Given the position of Nemo and the configuration of walls and doors, please write a program to calculate the minimum number of doors Marlin has to go through in order to reach Nemo.

Input

The input consists of several test cases. Each test case is started by two non-negative integers M and N. M represents the number of walls in the labyrinth and N represents the number of doors. 
Then follow M lines, each containing four integers that describe a wall in the following format: 
x y d t 
(x, y) indicates the lower-left point of the wall, d is the direction of the wall -- 0 means it's parallel to the X-axis and 1 means that it's parallel to the Y-axis, and t gives the length of the wall. 
The coordinates of two ends of any wall will be in the range of [1,199]. 
Then there are N lines that give the description of the doors: 
x y d 
x, y, d have the same meaning as the walls. As the doors have fixed length of 1, t is omitted. 
The last line of each case contains two positive float numbers: 
f1 f2 
(f1, f2) gives the position of Nemo. And it will not lie within any wall or door. 
A test case of M = -1 and N = -1 indicates the end of input, and should not be processed.

Output

For each test case, in a separate line, please output the minimum number of doors Marlin has to go through in order to rescue his son. If he can't reach Nemo, output -1.

Sample Input

8 9
1 1 1 3
2 1 1 3
3 1 1 3
4 1 1 3
1 1 0 3
1 2 0 3
1 3 0 3
1 4 0 3
2 1 1
2 2 1
2 3 1
3 1 1
3 2 1
3 3 1
1 2 0
3 3 0
4 3 1
1.5 1.5
4 0
1 1 0 1
1 1 1 1
2 1 1 1
1 2 0 1
1.5 1.7
-1 -1

Sample Output

5
-1

【题意】给出n,m分别表示墙数和门数

再给出n组x,y,op,t;op=1时表示起点为x,y的墙向上t个单位,op=0则表示起点为x,y的墙向右t个单位

再给出m组x,y,op;op=1时表示起点为x,y的门向上1个单位,op=0则表示起点为x,y的门向右1个单位

给出sx,sy;求从(1,1)到(sx,sy)最少经过的门

【思路】用xa记录(i,j)的格子的上面的边的状态,ya记录(i,j)的格子的右面的边的状态。进行bfs;

#include <iostream>
#include<stdio.h>
#include<string.h>
#include<queue>
using namespace std;
const int inf=0x3f3f3f3f;
const int N=;
int xa[N][N],ya[N][N];
//xa记录(i,j)的格子的上面的边的状态,ya记录(i,j)的格子的右面的边的状态
//用inf表示墙,0表示空,1表示门;
int dis[N][N];
int di[][]={{,},{-,},{,},{,-}};
int n,m;
int wall=inf;
int maxx,maxy;
int get_val(int x,int y,int op)//检验一下有没有穿越门
{
if(op==) return ya[x][y];向右,检测当前格子的右边的值
else if(op==) return ya[x-][y];//向左,检测左边的格子的右边值
else if(op==) return xa[x][y];//向上,检测当前格子的上边值
else return xa[x][y-];//向下,检测下面格子的上边值
}
bool go(int x,int y)//检测是否在范围内
{
if(x<||x>maxx||y<||y>maxy) return false;
else return true;
}
int bfs(int sx,int sy)
{
queue<int>qu;
for(int i=;i<=maxx;i++)
{
for(int j=;j<=maxy;j++)
{
dis[i][j]=inf;
}
}
dis[][]=;//从(1,1)这个格子出发
qu.push();//横纵坐标都入队
qu.push();
while(!qu.empty())
{
int nowx=qu.front();qu.pop();
int nowy=qu.front();qu.pop();
for(int i=;i<;i++)//向四个方向查找
{
int xx=nowx+di[i][];
int yy=nowy+di[i][];
int tmp=get_val(nowx,nowy,i);
if(go(xx,yy)&&dis[xx][yy]>dis[nowx][nowy]+tmp)//在范围内,并经过的门少,则入队
{
dis[xx][yy]=dis[nowx][nowy]+tmp;
qu.push(xx);
qu.push(yy);
}
}
}
return dis[sx][sy]==inf?-:dis[sx][sy];//inf表示此路不通,无路可走
}
int main()
{
while(~scanf("%d%d",&n,&m))
{
if(m==-&&n==-) break;
memset(xa,,sizeof(xa));
memset(ya,,sizeof(ya));
maxx=-,maxy=-;
for(int i=; i<=n; i++)
{
int x,y,op,t;
scanf("%d%d%d%d",&x,&y,&op,&t);
if(op)
{
for(int j=; j<t; j++)
ya[x][y+j+]=wall;
maxx=max(maxx,x+);
maxy=max(maxy,y+t+); }
else
{
for(int j=;j<t;j++)
{
xa[x+j+][y]=wall;
}
maxx=max(maxx,x+t+);
maxy=max(maxy,y+);
}
}
for(int i=;i<=m;i++)
{
int x,y,op;
scanf("%d%d%d",&x,&y,&op);
if(op)
{
ya[x][y+]=;
}
else xa[x+][y]=;
}
double sx,sy;
scanf("%lf%lf",&sx,&sy);
if(sx<||sx>||sy<||sy>) printf("0\n");
else printf("%d\n",bfs((int)sx+,(int)sy+));
}
return ;
}

Finding Nemo_BFS的更多相关文章

  1. hdu-5992 Finding Hotels(kd-tree)

    题目链接: Finding Hotels Time Limit: 2000/1000 MS (Java/Others)     Memory Limit: 102400/102400 K (Java/ ...

  2. [转] Finding the Best Programmer's Font

    原文 Finding the Best Programmer's Font

  3. LOJ Finding LCM(math)

    1215 - Finding LCM Time Limit: 2 second(s) Memory Limit: 32 MB LCM is an abbreviation used for Least ...

  4. 验证码识别 edge enhancement - 轮廓增强 region finding - 区域查找

    Computer Science An Overview _J. Glenn Brookshear _11th Edition The task of understanding general im ...

  5. Finding Nemo 分类: POJ 2015-07-11 10:11 10人阅读 评论(0) 收藏

    Finding Nemo Time Limit: 2000MS   Memory Limit: 30000K Total Submissions: 8117   Accepted: 1883 Desc ...

  6. Codeforces Round #356 (Div. 2)B. Bear and Finding Criminals(水题)

    B. Bear and Finding Criminals time limit per test 2 seconds memory limit per test 256 megabytes inpu ...

  7. codeforces 680B B. Bear and Finding Criminals(水题)

    题目链接: B. Bear and Finding Criminals //#include <bits/stdc++.h> #include <vector> #includ ...

  8. POJ 2049 Finding Nemo bfs 建图很难。。

    Finding Nemo Time Limit: 2000MS   Memory Limit: 30000K Total Submissions: 6952   Accepted: 1584 Desc ...

  9. POJ 2049 Finding Nemo

    Finding Nemo Time Limit: 2000MS   Memory Limit: 30000K Total Submissions: 8631   Accepted: 2019 Desc ...

随机推荐

  1. 绝对应当收藏的10个实用HTML5代码片段(转)

    HTML5绝对是一个流行元素,受到如此多的公司组织的追捧,作为极客来说,岂能错过呢?在今天这篇文章中,我们将分享一些超实用的HTML5的代码片段,相信大家一定会喜欢! 正确的嵌入flash 如果你经常 ...

  2. curl,chkconfig

    1. Linux系统服务管理 工具ntsysv 类似图形界面管理工具,如果没有该命令使用 yum install -y ntsysv 安装 常用服务:crond, iptables, network, ...

  3. 终于!Linaro 加盟 Zephyr 项目

    导读 为物联网构建实时操作系统的开源协作项目 Zephyr 项目宣布,Linaro 有限责任公司以白金会员的身份加盟该项目.Linaro是一家为 ARM 架构开发开源软件的协作工程组织,也是全球性机构 ...

  4. autoLyout纯代码适配

    前言 1 MagicNumber -> autoresizingMask -> autolayout 以上是纯手写代码所经历的关于页面布局的三个时期 在iphone1-iphone3gs时 ...

  5. 一个高在线(可以超过1024)多线程的socket echo server(pthreads 和 libevent扩展)

    研究了3周吧,本来打算用pthreads+event扩展的,结果event扩展太原始了,太多函数了,实在不知道怎么在外部随时发送数据给客户端,所以改用libevent, 改用libevent之后花了2 ...

  6. Redis系列-存储篇set主要操作函数小结

    最近,总是以“太忙“为借口,很久没有blog了,凡事贵在恒,希望我能够坚持不懈,毕竟在blog的时候,也能提升自己.废话不说了,直奔主题”set“ redis set 是string类型对象的无序集合 ...

  7. js 获取div 图片高度

    使用jquery获取网页中图片的高度其实很简单,有两种常用的方法都可以打到我们的目的 $("img").whith();(返回纯数字) $("img").css ...

  8. PowerShell工具脚本---按行数切割大文本文件

    我编写的PowerShell工具脚本,[按行数切割大(文本)文件],生成n个小文件. 主要目的是为了能够让excel快速处理.或用脚本并发处理文本. 注意: 1 如果有必要,你可以先用其他工具,把大文 ...

  9. DotNetBar v12.4.0.2 Fully Cracked

    更新信息: http://www.devcomponents.com/customeronly/releasenotes.asp?p=dnbwf&v=12.4.0.2 如果遇到破解问题可以与我 ...

  10. 用腻了bootstrap的可以试试semantic-ui

    semancti-ui介绍 semantic-ui是html/css框架的新贵,是继bootstrap和foundation之后的又一css神器.semantic-ui一出现在github上就受到火热 ...