2023.2.13(总结)

题目描述

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≤M≤50,000)(1≤M≤50,000) 会坠落在农场上,其中第 ii 颗流星会在时刻 T_iTi​ 砸在坐标为 (X_i,Y_i)(Xi​,Yi​) (0≤Xi≤300,,0≤Yi≤300)的格子里。流星的力量会将它所在的格子,以及周围的格子里。流星的力量会将它所在的格子,以及周围4$ 个相邻的格子都化为焦土,当然贝茜也无法再在这些格子上行走。

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

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

输入格式

共 M+1M+1 行,第 11 行输入一个整数 MM,接下来的 MM 行每行输入三个整数分别为 X_iXi​,Y_iYi​,T_iTi​。

输出格式

贝西到达安全地点所需的最短时间,如果不可能,则为 -1−1。

输入输出样例

输入 #1复制

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

输出 #1复制

5

分析:
1,坐标不能低于0,但可以超300;流星定时砸下;流星砸下时间已最早的那个为准;如果出不去还要输出-1。

2,首先,是一道明显的bfs题,要求最短时间,所以用队列记录;陨石地图用一个二维数组记录,内容为砸下时间,以时间早为标准;再用一个二维数组记录每个点最短时间;终止条件:如果搜到一个点永远不会被陨石砸到,输出该点时间,或者直到搜索结束也没有出去,输出-1。

代码如下:

#include<stdio.h>
#include<math.h>
#include<string.h>
#define N 50005
#define max 0x3f3f3f3f
int n,jh=1;
int xi[N],yi[N],ti[N];
int dx[4]= {1,-1,0,0},dy[4]= {0,0,1,-1};
int a[500][500];
int bj[500][500];

struct bs 
{
  int x;
  int y;
  int t;
} aa[N];

void ggg(int x,int y,int t) 
{ 
  if((a[x][y]>t||a[x][y]==max))
  	a[x][y]=t;
    for(int i=0; i<4; i++) 
  {
  	int xx=x+dx[i],yy=y+dy[i]; 
  	if(xx<0||yy<0)
  		continue;
  	if((a[xx][yy]>t||a[xx][yy]==max))
  		a[xx][yy]=t;
  }
}

void gg(int x,int y,int t) 
{ 
  int f,r;
  f=r=0;
  aa[++r].x=x;
  aa[r].y=y;
  aa[r].t=t; 
  while(f<r) 
  {
  	f++;
  	int xx=aa[f].x;
  	int yy=aa[f].y;
  	int tt=aa[f].t; 
  	for(int i=0; i<4; i++) {
  		int xxx=xx+dx[i],yyy=yy+dy[i];
  		if(xxx<0||yyy<0)
  			continue; 
  		if(a[xxx][yyy]==max) 
        {
  			jh=0;
  			printf("%d",tt+1);
  			return ;
  		}
  		if(xxx>=0&&yyy>=0&&!bj[xxx][yyy]&tt+1<a[xxx][yyy]) 
        { 
  			aa[++r].x=xxx;
  			aa[r].y=yyy;
  			aa[r].t=tt+1;
  			bj[xxx][yyy]=1;
  		}
  	}
  }
}
int main() 
{
  scanf("%d",&n);
  for(int i=0;i<500;i++)
  for(int j=0;j<500;j++)
  a[i][j]=max;
  for(int i=1; i<=n; i++) 
  {
  	scanf("%d%d%d",&xi[i],&yi[i],&ti[i]);
  	ggg(xi[i],yi[i],ti[i]); 
  }
  bj[0][0]=1; 
  if(a[0][0]==max) 
  { 
  	printf("0");
  	return 0;
  }
  gg(0,0,0);
  if(jh) 
  	printf("-1");
}

总结:
今天是对搜索和数据结构的一个小复习,补完了之前这一节中没有做完的题。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值