zoukankan      html  css  js  c++  java
  • Meteor Shower POJ

    Meteor Shower
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 26455   Accepted: 6856

    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 (XiYi) (0 ≤ X≤ 300; 0 ≤ Y≤ 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.

    Input

    * Line 1: A single integer: M
    * Lines 2..M+1: Line i+1 contains three space-separated integers: XiYi, and Ti

    Output

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

    Sample Input

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

    Sample Output

    5
    

    题意:流星来袭,在一个方格中,贝茜在(0,0)点,为了防止被流星击中,贝茜需要移动到安全的位置。一共有n颗流星,给出流星落下的坐标(xi,yi)和时间ti,每一颗流星落地时上下左右的格子也为遭受毁灭。贝茜经过的路程是不能被毁灭的。

    题解:首先要建图,用map[][]数组储存好每个点遭受流星打击的时间,不受流星打击的用-1涵盖。(不能用0覆盖,部分点可能在0时刻遭受打击) 然后遍历整张图,找到不受流星打击的点即可,因为要求最短时间,所有要用到优先队列,优先时间最小的点出队列。根据题意我们知道在图内的不受流星打击的点和没有经过流星打击的点能进入队列。

    #include<cstdio>
    #include<iostream>
    #include<algorithm>
    #include<cstring>
    #include<sstream>
    #include<cmath>
    #include<cstdlib>
    #include<queue>
    #include<map>
    using namespace std;
    #define INF 0x3f3f3f3f
    const int maxn=304;
    
    int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};
    int maze[maxn][maxn];
    int vis[maxn][maxn];
    
    struct node
    {
        int x,y,step;
    }temp,a;
    bool operator < (const node &a,const node &b)
    {
        return a.step>b.step;
    }
    
    int min(int a,int b)
    {
        return a>b?b:a;
    }
    void bfs()
    {
        int i;
        memset(vis,0,sizeof(vis));
        priority_queue<node>q;
        a.x=0; a.y=0;
        a.step=0;
        q.push(a);
        vis[0][0]=1;
        while(!q.empty())
        {
            a=q.top();
            q.pop();
            if(maze[a.x][a.y]==-1)
            {
                cout<<a.step<<endl;
                return ;
            }
            for(i=0;i<4;i++)
            {
                temp.x=a.x+dx[i];
                temp.y=a.y+dy[i];
                temp.step=a.step+1;
                if(temp.x>=0 && temp.y>=0 && (maze[temp.x][temp.y]==-1 || maze[temp.x][temp.y]>temp.step))
                {
                    if(!vis[temp.x][temp.y])
                        q.push(temp);
                    vis[temp.x][temp.y]=1;
                }
            }
            
        }
        cout<<-1<<endl;
        
        
    }
    
    int main()
    {
        int n,x,y,t;
        memset(maze,-1,sizeof(maze));
        cin>>n;
        for(int i=0;i<n;i++)
        {
            cin>>x>>y>>t;
            if(maze[x][y]==-1)
                maze[x][y]=t;
            else
                maze[x][y]=min(maze[x][y],t);
            for(int j=0;j<4;j++)
            {
                int nx=x+dx[j];
                int ny=y+dy[j];
                if(nx>=0 && ny>=0)
                {
                  if(maze[nx][ny]==-1)
                      maze[nx][ny]=t;
                  else
                      maze[nx][ny]=min(t,maze[nx][ny]);
                }
            }
            
        }
        bfs();
        return 0;
    }
  • 相关阅读:
    Welcome to Swift (苹果官方Swift文档初译与注解十一)---70~76页(第二章)
    Welcome to Swift (苹果官方Swift文档初译与注解十)---63~69页(第二章)
    Welcome to Swift (苹果官方Swift文档初译与注解九)---58~62页(第二章)
    Welcome to Swift (苹果官方Swift文档初译与注解六)---35~44页 (第一章完)
    CSS3如何实现2D转换和3D转换,他们有何区别
    表格列布局系列如何灵活把握列宽
    如何将多行数据以分组的形式对齐到单元格的上,中或下位置
    媒体查询的应用以及在css3中的变革
    样式表优先级顺序
    创建热点区域
  • 原文地址:https://www.cnblogs.com/smallhester/p/9499818.html
Copyright © 2011-2022 走看看