POJ 3669 Meteor Shower(流星雨)
POJ 3669 Meteor Shower(流星雨)
Time Limit: 1000MS Memory Limit: 65536K
Description |
题目描述 |
Bessie hears that an extraordinary meteor shower is coming; reports say that these meteors will crash into earth and destroy anything they hit. Anxious for her safety, she vows to find her way to a safe location (one that is never destroyed by a meteor) . She is currently grazing at the origin in the coordinate plane and wants to move to a new, safer location while avoiding being destroyed by meteors along her way. The reports say that M meteors (1 ≤ M ≤ 50,000) will strike, with meteor i will striking point (Xi, Yi) (0 ≤ Xi ≤ 300; 0 ≤ Yi ≤ 300) at time Ti (0 ≤ Ti ≤ 1,000). Each meteor destroys the point that it strikes and also the four rectilinearly adjacent lattice points. Bessie leaves the origin at time 0 and can travel in the first quadrant and parallel to the axes at the rate of one distance unit per second to any of the (often 4) adjacent rectilinear points that are not yet destroyed by a meteor. She cannot be located on a point at any time greater than or equal to the time it is destroyed). Determine the minimum time it takes Bessie to get to a safe place. |
Bessie听说有场史无前例的流星雨即将来临;有谶言:陨星将落,徒留灰烬。为保生机,她誓将找寻安全之所(永避星坠之地)。目前她正在平面坐标系的原点放牧,打算在群星断其生路前转移至安全地点。 此次共有M (1 ≤ M ≤ 50,000)颗流星来袭,流星i将在时间点Ti (0 ≤ Ti ≤ 1,000) 袭击点 (Xi, Yi) (0 ≤ Xi ≤ 300; 0 ≤ Yi ≤ 300)。每颗流星都将摧毁落点及其相邻四点的区域。 Bessie在0时刻时处于原点,且只能行于第一象限,以平行与坐标轴每秒一个单位长度的速度奔走于未被毁坏的相邻(通常为4)点上。在某点被摧毁的刹那及其往后的时刻,她都无法进入该点。 |
Input |
输入 |
* Line 1: A single integer: M * Lines 2..M+1: Line i+1 contains three space-separated integers: Xi, Yi, and Ti |
* 第1行: 一个整数: M * 第2..M+1行: 第i+1行包含由空格分隔的三个整数: Xi, Yi, and Ti |
Output |
输出 |
* Line 1: The minimum time it takes Bessie to get to a safe place or -1 if it is impossible. |
* 仅一行: Bessie寻得安全点所花费的最短时间,无解则为-1。 |
Sample Input - 输入样例 |
Sample Output - 输出样例 |
4 |
5 |
【题解】
从起点开始进行SPFA(DFS)即可。
需要注意的是在读取各个落点的数据时,只保留最早被毁灭的时间点。
【代码 C++】
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
#define mx 305
int dg[mx][mx], tim[mx][mx], drc[][] = { , , -, , , , , -, , };
struct Point{
int y, x;
}temp, nxt;
int main(){
int m, x, y, t, i, nowT, opt;
scanf("%d", &m);
memset(dg, -, sizeof(dg));
while (m--){
scanf("%d%d%d", &x, &y, &t);
++y; ++x;
for (i = ; i < ; ++i){
temp.y = y + drc[i][]; temp.x = x + drc[i][];
if (~dg[temp.y][temp.x]) dg[temp.y][temp.x] = std::min(dg[temp.y][temp.x], t);
else dg[temp.y][temp.x] = t;
}
} memset(dg, , sizeof(dg[])); memset(dg[mx - ], , sizeof(dg[]));
for (i = ; i < mx; ++i) dg[i][] = dg[i][mx - ] = ;
memset(tim, , sizeof(tim));
nowT = ; opt = ;
std::queue<Point> q;
tim[][] = ; temp.y = temp.x = ; q.push(temp);
while (!q.empty()){
temp = q.front(); q.pop();
if (dg[temp.y][temp.x] == -){
opt = std::min(opt, tim[temp.y][temp.x]);
continue;
}
for (i = ; i < ; ++i){
nxt.y = temp.y + drc[i][]; nxt.x = temp.x + drc[i][];
if (tim[temp.y][temp.x] + < dg[nxt.y][nxt.x] || dg[nxt.y][nxt.x] == -){
if (tim[temp.y][temp.x] + < tim[nxt.y][nxt.x]){
tim[nxt.y][nxt.x] = tim[temp.y][temp.x] + ;
q.push(nxt);
}
}
}
}
if (opt == ) puts("-1");
else printf("%d", opt);
return ;
}
POJ 3669 Meteor Shower(流星雨)的更多相关文章
- POJ 3669 Meteor Shower【BFS】
POJ 3669 去看流星雨,不料流星掉下来会砸毁上下左右中五个点.每个流星掉下的位置和时间都不同,求能否活命,如果能活命,最短的逃跑时间是多少? 思路:对流星雨排序,然后将地图的每个点的值设为该点最 ...
- poj 3669 Meteor Shower
Me ...
- poj 3669 Meteor Shower(bfs)
Description Bessie hears that an extraordinary meteor shower is coming; reports say that these meteo ...
- POJ 3669 Meteor Shower (BFS+预处理)
Description Bessie hears that an extraordinary meteor shower is coming; reports say that these meteo ...
- 题解报告:poj 3669 Meteor Shower(bfs)
Description Bessie hears that an extraordinary meteor shower is coming; reports say that these meteo ...
- POJ 3669 Meteor Shower BFS求最小时间
Meteor Shower Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 31358 Accepted: 8064 De ...
- 【POJ 3669 Meteor Shower】简单BFS
流星雨撞击地球(平面直角坐标第一象限),问到达安全地带的最少时间. 对于每颗流星雨i,在ti时刻撞击(xi,yi)点,同时导致(xi,yi)和上下左右相邻的点在ti以后的时刻(包括t)不能再经过(被封 ...
- POJ 3669 Meteor Shower BFS 水~
http://poj.org/problem?id=3669 题目大意: 一个人从(0,0)出发,这个地方会落下陨石,当陨石落在(x,y)时,会把(x,y)这个地方和相邻的的四个地方破坏掉,求该人到达 ...
- BZOJ1611: [Usaco2008 Feb]Meteor Shower流星雨
1611: [Usaco2008 Feb]Meteor Shower流星雨 Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 904 Solved: 393 ...
随机推荐
- 关于路由器自定义 3322.org 的DDNS
首先, 3322.org, 现在官网地址为: http://www.pubyun.com/ 注册用户后,如果支持 3322 的路由器,可以直接设置. 不支持的路由就要想办法自定义了. 3322 的 D ...
- 好用的SSH客户端 good SSH client recommended
对于经常性地要登录服务器的同志们,选择一款优秀的SSH客户端非常有必要,不仅可以提高效率,而且赏心悦目,宅的几率更大.呵呵,我就是i一枚.很出名的就是PuTTY(Windows,Linux都有的), ...
- webservice cxf error:org.apache.cxf.interceptor.Fault: Unmarshalling Error: 意外的元素 (uri:"", local:"ca
服务器端webservice接口 需要定义@WebParam,如: public ReturnDTO cardBatchSyn(@WebParam(name = "cardBatchSynM ...
- 使用磁盘为Linux添加swap
一.SWAP 说明 1.SWAP 概述 当系统的物理内存不够用的时候,就需要将物理内存中的一部分空间释放出来,以供当前运行的程序使用.那些被释放的空间可能来自一些很长时间没有什么操作的程序,这些被释放 ...
- VS 6.00 工程项目文件详解
*.dsp(DeveloperStudio Project):是VC++的工程配置文件,比如说你的工程包含哪个文件,你的编译选项是什么等等,编译的时候是按照.dsp的配置来的.*.dsw(Develo ...
- destoon短信接口修改方法
destoon是很优秀的B2B行业站程序.程序模块化开发契合度很高,二次开发起来也很顺畅.数据缓存,权限分配,SEO功能方面都不错. 但是在使用这套程序的时候,常常要用到发送短信的功能,而destoo ...
- 快速排序算法(Java)
快速排序算法的基本思想是:通过一趟排序将待排记录分割成独立的两部分,其中一部分记录的关键字均比另外一部分记录的关键字小,则可分别对这两部分记录继续进行排序,以达到整个序列有序. class Parti ...
- sdp内容解析
sdp解释 http://datatracker.ietf.org/doc/draft-nandakumar-rtcweb-sdp/?include_text=1
- 关于childNodes的length的问题
<ul id="ul1"> <li></li> <li></li> </ul> 这个时候如果 documen ...
- java.lang.VerifyError异常
以前遇到过java.lang.VerifyError 原因是jar包冲突 tomcat6自带jsp.jar.servlet.jar所以项目中不用引入 tomcat5不带jsp.jar.servlet. ...