描述


http://www.lydsy.com/JudgeOnline/problem.php?id=1611

网格图起始位置(0,0),不同时间会有流星落下,导致之后的时间里,该点以及周围四个点都不能走.要走到一定安全的地方,问至少多少时间(一个时间走一步).

分析


在网上看到的题解都是记录下每个点最早被毁灭的时间,跑bfs的时候判断这个点被毁灭了没有,然后走到被毁灭时间是INF的点即可.

可是我是模拟的...先把最后一定安全的点都找出来,然后bfs的时候时间每+1,就把那个时间的流行放下去...貌似更快...

1.

 #include <bits/stdc++.h>
using namespace std; const int maxn=+,maxt=+,INF=0x7fffffff;
int n;
int t[maxn][maxn];
bool vis[maxn][maxn];
struct nd{ int x,y,step; nd(int x=,int y=,int step=):x(x),y(y),step(step){} };
int go[][]={ ,-,,,-,,, };
void bfs(){
if(t[][]==){
printf("-1\n");
return;
}
queue <nd> q;
q.push(nd(,,));
while(!q.empty()){
nd u=q.front(); q.pop();
if(t[u.x][u.y]==INF){
printf("%d\n",u.step);
return;
}
for(int i=;i<;i++){
int tx=u.x+go[i][],ty=u.y+go[i][];
if(!vis[tx][ty]&&tx>=&&tx<=&&ty>=&&ty<=&&t[tx][ty]>u.step+){
vis[tx][ty]=true;
q.push(nd(tx,ty,u.step+));
}
}
}
printf("-1\n");
}
void init(){
scanf("%d",&n);
for(int i=;i<=;i++)
for(int j=;j<=;j++)
t[i][j]=INF;
for(int i=;i<=n;i++){
int x,y,z;
scanf("%d%d%d",&x,&y,&z); x++; y++;
t[x][y]=min(t[x][y],z);
for(int i=;i<;i++){
int tx=x+go[i][],ty=y+go[i][];
t[tx][ty]=min(t[tx][ty],z);
} }
}
int main(){
init();
bfs();
return ;
}

2.

 #include <bits/stdc++.h>
using namespace std; const int maxn=+,maxt=+;
int n;
bool mark1[maxn][maxn];
bool mark2[maxn][maxn];
bool vis[maxn][maxn];
struct node{ int x,y; node(int x=,int y=):x(x),y(y){}};
struct nd{ int x,y,step; nd(int x=,int y=,int step=):x(x),y(y),step(step){} };
vector <node> t[maxt];
int go[][]={ ,-,,,-,,, };
void bfs(){
queue <nd> q;
q.push(nd(,,));
int now=-;
while(!q.empty()){
nd u=q.front(); q.pop();
if(!mark1[u.x][u.y]){
printf("%d\n",u.step);
return;
}
if(u.step!=now){
for(int i=;i<t[u.step].size();i++){
int x=t[u.step][i].x,y=t[u.step][i].y;
mark2[x][y]=mark2[x-][y]=mark2[x+][y]=mark2[x][y-]=mark2[x][y+]=true;
}
now=u.step;
}
if(mark2[u.x][u.y]) continue;
for(int i=;i<;i++){
int tx=u.x+go[i][],ty=u.y+go[i][];
if(!vis[tx][ty]&&!mark2[tx][ty]&&tx>=&&tx<=&&ty>=&&ty<=){
vis[tx][ty]=true;
q.push(nd(tx,ty,u.step+));
}
}
}
printf("-1\n");
}
void init(){
scanf("%d",&n);
for(int i=;i<=n;i++){
int a,b,c;
scanf("%d%d%d",&a,&b,&c); a++; b++;
t[c].push_back(node(a,b));
mark1[a][b]=mark1[a-][b]=mark1[a+][b]=mark1[a][b-]=mark1[a][b+]=true;
}
}
int main(){
init();
bfs();
return ;
}

p.s.

1.这题数据是不是有问题啊...我坐标+1,要开到302才能过...

1611: [Usaco2008 Feb]Meteor Shower流星雨

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 1284  Solved: 561
[Submit][Status][Discuss]

Description


年偶们湖南遭受N年不遇到冰冻灾害,现在芙蓉哥哥则听说另一个骇人听闻的消息:
一场流星雨即将袭击整个霸中,由于流星体积过大,它们无法在撞击到地面前燃烧殆尽,
届时将会对它撞到的一切东西造成毁灭性的打击。很自然地,芙蓉哥哥开始担心自己的
安全问题。以霸中至In型男名誉起誓,他一定要在被流星砸到前,到达一个安全的地方
(也就是说,一块不会被任何流星砸到的土地)。如果将霸中放入一个直角坐标系中,
芙蓉哥哥现在的位置是原点,并且,芙蓉哥哥不能踏上一块被流星砸过的土地。根据预 报,一共有M颗流星(1 <= M <=
50,000)会坠落在霸中上,其中第i颗流星会在时刻 T_i (0 <= T_i <= 1,000)砸在坐标为(X_i, Y_i)
(0 <= X_i <= 300;0 <= Y_i <= 300)
的格子里。流星的力量会将它所在的格子,以及周围4个相邻的格子都化为焦土,当然
芙蓉哥哥也无法再在这些格子上行走。芙蓉哥哥在时刻0开始行动,它只能在第一象限中,
平行于坐标轴行动,每1个时刻中,她能移动到相邻的(一般是4个)格子中的任意一个,
当然目标格子要没有被烧焦才行。如果一个格子在时刻t被流星撞击或烧焦,那么芙蓉哥哥
只能在t之前的时刻在这个格子里出现。请你计算一下,芙蓉哥哥最少需要多少时间才能到 达一个安全的格子。

Input

* 第1行: 1个正整数:M * 第2..M+1行: 第i+1行为3个用空格隔开的整数:X_i,Y_i,以及T_i

Output

输出1个整数,即芙蓉哥哥逃生所花的最少时间。如果芙蓉哥哥无论如何都无法在流星雨中存活下来,输出-1

Sample Input

4
0 0 2
2 1 2
1 1 2
0 3 5
输入说明:
一共有4颗流星将坠落在霸中,它们落地点的坐标分别是(0, 0),(2, 1),(1, 1)
以及(0, 3),时刻分别为2,2,2,5。

Sample Output

5

HINT

样例图示

Source

BZOJ_1611_[Usaco2008_Feb]_Meteor_Shower流星雨_(bfs)的更多相关文章

  1. 【BZOJ】1611: [Usaco2008 Feb]Meteor Shower流星雨(bfs)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1611 一眼题,bfs. #include <cstdio> #include <c ...

  2. BZOJ_1627_[Usaco2007_Dec]_穿越泥地_(bfs)

    描述 http://www.lydsy.com/JudgeOnline/problem.php?id=1627 网格图,给出起点,终点,障碍,求最短路. 分析 简单的宽搜. #include < ...

  3. bzoj 1611: [Usaco2008 Feb]Meteor Shower流星雨【BFS】

    t记录每个格子最早被砸的时间,bfs(x,y,t)表示当前状态为(x,y)格子,时间为t.因为bfs,所以先搜到的t一定小于后搜到的,所以一个格子搜一次就行 #include<iostream& ...

  4. Linux进程调度策略的发展和演变(转)

    转发:http://blog.csdn.net/gatieme/article/details/51701149  1 前言 1.1 进程调度 内存中保存了对每个进程的唯一描述, 并通过若干结构与其他 ...

  5. ZOJ 2532 Internship(最大流找关键割边)

    Description CIA headquarter collects data from across the country through its classified network. Th ...

  6. [Usaco2008 Feb]Meteor Shower流星雨[BFS]

    Description 去年偶们湖南遭受N年不遇到冰冻灾害,现在芙蓉哥哥则听说另一个骇人听闻的消息: 一场流星雨即将袭击整个霸中,由于流星体积过大,它们无法在撞击到地面前燃烧殆尽, 届时将会对它撞到的 ...

  7. [LeetCode] 103. Binary Tree Zigzag Level Order Traversal _ Medium tag: BFS

    Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to ...

  8. BZOJ_3049_[Usaco2013 Jan]Island Travels _状压DP+BFS

    BZOJ_3049_[Usaco2013 Jan]Island Travels _状压DP+BFS Description Farmer John has taken the cows to a va ...

  9. BZOJ_1415_[Noi2005]聪聪和可可_概率DP+bfs

    BZOJ_1415_[Noi2005]聪聪和可可_概率DP+bfs Description Input 数据的第1行为两个整数N和E,以空格分隔,分别表示森林中的景点数和连接相邻景点的路的条数. 第2 ...

随机推荐

  1. android 电话拨号器

    电话拨号器(重点)            1.产品经理: 需求分析文档,设计原型图    2.UI工程师: 设计UI界面    3.架构师: 写架构,接口文档    4.码农: 服务端,客户端     ...

  2. 修改虚机IP

    同网段的话,直接修改,不同网段的话,使用以下方法: 步骤一:nova list --all-tenant 找到相应虚拟机+--------------------------------------+ ...

  3. Putty + Vim + Color

    Putty + Vim + Color 参考: 1.Using colour schemes with vim and putty 2.Putty的颜色 3.Custom PuTTY Color Th ...

  4. VC++ CTime Format 详解

    参考链接: VC++中CTime类Format参数详解 CTime/COleDateTime::Format方法的使用 http://stat.ethz.ch/R-manual/R-devel/lib ...

  5. echarts雷达图

    用echarts展现雷达图的定制 <!doctype html> <html> <head> <meta charset="utf-8"& ...

  6. 用php生成word文档

    一.用windows里面自带的com,然后用php生成word文档 <?php $word= new COM("word.application") or die(" ...

  7. CSS中Padding的用法

    Padding的英文意思是填充,在CSS中则是设置内边距属性. padding不允许使用负值 1. 四个参数时: padding: 10px,20px,30px,40px; 上边距:10px 右边距: ...

  8. python 脚本

    mag3.py 1,import import sys from org.eclipse.jface.dialogs import MessageDialogfrom org.eclipse.core ...

  9. linux环境下验证码不显示的几种情况

    linux环境下验证码不显示的几种情况 gd库扩展没有安装. 查看phpinfo(),看看有没有安装gd库 yum安装gd库或者phpize安装 安装完成后记得重启php-fpm bom头的原因 在生 ...

  10. jersey post提交到 ContainerRequestFilter 而HttpServletRequest获取不到数据(转)

     jersey post提交到 ContainerRequestFilter 而HttpServletRequest获取不到数据 问题:在serverfilter request获取不到post提交的 ...