Meteor Shower S-19物联网张春

题目描述

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.
    在这里插入图片描述

输入输出样例
输入 #1

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

输出 #1

5
#include<bits/stdc++.h>
using namespace std;
struct node
{
    int x,y,time;
} p; //x,y存坐标,time存当前的时间
int m,x,y,t,nx,ny,time1[305][305],c[305][305]; //time1数组存这个格子流星最早到达的时间,c存是否到过这个格子,数组开大点!!!!
int b1[4]= {0,0,1,-1},b2[4]= {1,-1,0,0};
queue<node>q;
int main()
{
    cin>>m;
    for(int i=0; i<=302; i++)
        for(int j=0; j<=302; j++)
            time1[i][j]=-1; //先都赋初值为-1
    for(int i=1; i<=m; i++)
    {
        cin>>x>>y>>t;
        if(t<time1[x][y]||time1[x][y]==-1) //这颗流星到达的时间必须小于前面流星或焦土到达的时间,或者还暂时没有流星及焦土
            time1[x][y]=t;
        for(int i=0; i<4; i++)
        {
            nx=x+b1[i],ny=y+b2[i];
            if(nx>=0&&ny>=0&&(time1[nx][ny]==-1||t<time1[nx][ny]))
                time1[nx][ny]=t;  //枚举焦土
        }
    }
    p.x=0,p.y=0,p.time=0;
    q.push(p);
    while(!q.empty())
    {
        p=q.front();
        q.pop();
        for(int i=0; i<4; i++)
        {
            nx=p.x+b1[i],ny=p.y+b2[i];
            if(nx>=0&&ny>=0&&c[nx][ny]==0&&(time1[nx][ny]==-1||p.time+1<time1[nx][ny])) //没有流星到过或者bessie到这个格子的时候流星还没有到达
            {
                node txt;
                txt.x=nx,txt.y=ny,txt.time=p.time+1,c[nx][ny]=1; //扩展节点
                q.push(txt);
                if(time1[nx][ny]==-1) //判断当前的格子是否安全
                {
                    cout<<txt.time<<endl; //输出答案
                    return 0;
                }
            }
        }
    }
    cout<<-1<<endl; //到不了安全的格子就输出-1
    return 0;
}

总结:广搜题,看别人的代码,自己写肯定写不出来,好难搞哦

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值