【题解】【算法】- 洛谷 - P2895 [USACO08FEB]Meteor Shower S(bfs)

题目描述

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.

牛去看流星雨,不料流星掉下来会砸毁上下左右中五个点。每个流星掉下的位置和时间都不同,求牛能否活命,如果能活命,最短的逃跑时间是多少?

输入格式

* Line 1: A single integer: M

* Lines 2…M+1: Line i+1 contains three space-separated integers: Xi, Yi, and Ti

输出格式

* Line 1: The minimum time it takes Bessie to get to a safe place or -1 if it is impossible.

题意翻译

贝茜听说了一个骇人听闻的消息:一场流星雨即将袭击整个农场,由于流星体积过大,它们无法在撞击到地面前燃烧殆尽,届时将会对它撞到的一切东西造成毁灭性的打击。很自然地,贝茜开始担心自己的安全问题。以 FJ 牧场中最聪明的奶牛的名誉起誓,她一定要在被流星砸到前,到达一个安全的地方(也就是说,一块不会被任何流星砸到的土地)。如果将牧场放入一个直角坐标系中,贝茜现在的位置是原点,并且,贝茜不能踏上一块被流星砸过的土地。 根据预报,一共有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之前的时刻在这个格子里出现。

请你计算一下,贝茜最少需要多少时间才能到达一个安全的格子。

Translated by @跪下叫哥

输入输出样例

输入 #1复制

4
0 0 2
2 1 2
1 1 2
0 3 5

输出 #1复制

5

思路

这道题是一道bfs的例题了,比模板题要复杂一些,坑也多一些,详解看代码。

AC代码

#include <cstdio>
#include <iostream>
#include <cstring>
#include <queue>
#include <algorithm>
using namespace std;
const int N = 0x3f3f3f3f;
int m, book[305][305], arr[305][305], ans;
//四个方向
int dx[] = {1, 0, -1, 0}, dy[] = {0, 1, 0, -1};
//结构体
struct node{
    int x, y, time;
};
//定义一个前面结构体类型的队列
queue<node> q;
//bfs模板
void bfs(int x, int y, int t)
{
    node s;
    //起始点
    s.x = x;
    s.y = y;
    s.time = t;
    q.push(s);
    //标记
    book[s.x][s.y] = 1;
    while(!q.empty()){
        node fir = q.front();
        q.pop();
        //如果找到安全位置
        if(arr[fir.x][fir.y] == N){
            ans = fir.time;
            break;
        }
        //判断贝茜此时位置的相邻四个位置是否可以走
        for(int i = 0; i < 4; i ++){
            int x2 = fir.x + dx[i];
            int y2 = fir.y + dy[i];
            //在第一象限且保证到达这个位置时不会有陨石降落且这个位置没有被烧焦
            if(x2 >= 0 && y2 >= 0 && arr[x2][y2] > fir.time + 1 && book[x2][y2] == 0){
                book[x2][y2] = 1;
                node nex;
                nex.x = x2;
                nex.y = y2;
                //时间是前一个位置的时间加一
                nex.time = fir.time + 1;
                q.push(nex);
            }
        }
    }
}
int main(void)
{
    cin >> m;
    ans = -1;
    //初始化
    memset(arr, N, sizeof(arr));
    memset(book, 0, sizeof(book));
    //初始化,将陨石坠落下来的五个位置都记在数组里
    for(int i = 1; i <= m; i ++){
        int a, b, c;
        cin >> a >> b >> c;
        //因为同一位置可能会被多次烧焦,需要记录最小的那个
        arr[a][b] = min(arr[a][b], c);
        //四个方向的位置也都被烧焦,标记下来
        for(int j = 0; j < 4; j ++){
            int x1 = a + dx[j];
            int y1 = b + dy[j];
            if(x1 >= 0 && y1 >= 0){
                //因为同一位置可能会被多次烧焦,需要记录最小的那个
                arr[x1][y1] = min(arr[x1][y1], c);
            }
        }
    }
    //进入bfs
    bfs(0, 0, 0);
    if(ans == -1) cout << -1 << endl;
    else cout << ans << endl;
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值