BFS---陨石坠落

https://www.luogu.com.cn/problem/P2895

题目描述

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.

题意翻译

贝茜听说了一个骇人听闻的消息:一场流星雨即将袭击整个农场,由于流星体积过大,它们无法在撞击到地面前燃烧殆尽,届时将会对它撞到的一切东西造成毁灭性的打击。很自然地,贝茜开始担心自己的安全问题。以 Farmer John 牧场中最聪明的奶牛的名誉起誓,她一定要在被流星砸到前,到达一个安全的地方(也就是说,一块不会被任何流星砸到的土地)。如果将牧场放入一个直角坐标系中,贝茜现在的位置是原点,并且,贝茜不能踏上一块被流星砸过的土地。 根据预报,一共有 MM 颗流星 (1\leq M\leq50,000)(1≤M≤50,000)会坠落在农场上,其中第i颗流星会在时刻 T_iTi​ (0\leq T_i\leq1,000)(0≤Ti​≤1,000) 砸在坐标为 (X_i, Y_i)(Xi​,Yi​) (0\leq X_i\leq 300(0≤Xi​≤300,0\leq Y_i\leq300)0≤Yi​≤300) 的格子里。流星的力量会将它所在的格子,以及周围 44 个相邻的格子都化为焦土,当然贝茜也无法再在这些格子上行走。

贝茜在时刻 00 开始行动,它只能在第一象限中,平行于坐标轴行动,每 11 个时刻中,她能移动到相邻的(一般是 44 个)格子中的任意一个,当然目标格子要没有被烧焦才行。如果一个格子在时刻 tt 被流星撞击或烧焦,那么贝茜只能在 tt 之前的时刻在这个格子里出现。 贝西一开始在(0,0)(0,0)。

请你计算一下,贝茜最少需要多少时间才能到达一个安全的格子。如果不可能到达输出 -1−1。

Translated by @奆奆的蒟蒻 @跪下叫哥

 

#include <bits/stdc++.h>
using namespace std;
int t_ime[305][305];//某点爆炸时间
int vis[305][305];//访问标记数组
int dis[305][305];//记录时间间距数组
int xh[4]={0,0,1,-1},yh[4]={1,-1,0,0};
queue<pair<int,int>>q;
int Check(int x,int y)//返回最早爆炸时间
{

    int min = t_ime[x][y];
    for(int i=0;i<4;i++)
    {
        int a = x+xh[i],b = y+yh[i];
        if(a>=0&&a<=303&&b>=0&&b<=303&&t_ime[a][b]<min)
            min = t_ime[a][b];
    }
    return min;
}
int BFS()//返回到达第一个安全点所用时间
{
    q.push({0, 0});
    vis[0][0]=1;
    while(!q.empty())
    {
        int x = q.front().first,y=q.front().second;
        q.pop();
        //①下一秒到达(x+1,y)点时安全;②x+1不越界;③(x+1,y)首次被访问到
        for(int i=0;i<4;i++)
        {
            int a = x+xh[i],b = y+yh[i];
            if(a>=0&&a<=302&&b>=0&&b<=302&&dis[x][y]+1<Check(a,b)&&!vis[a][b])
            {
                if(Check(a,b)>1500000)//检验该点是否安全(数秒后不会爆炸)
                    return dis[x][y]+1;
                vis[a][b]=1;
                dis[a][b]=dis[x][y]+1;
                q.push({a,b});
            }
        }
    }
    return -1;
}
int main()
{
    //freopen("in","r",stdin);
    for(auto & i : t_ime)
        for(int & j : i)
        {
            j=6000000;//初始化所有点都不会爆炸
        }
    int M;cin>>M;
    for(int i=0;i<M;i++)
    {
        int x,y,z;
        cin>>x>>y>>z;
        t_ime[x][y]=z;
    }
    cout<<BFS();
    return 0;
}

 

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值