uva 1398 - Meteor

简介: 点击打开链接uva 1398 思路:扫描法 分析: 1 不难发现,流星的轨迹是没有用的,有意义的只是每个流星在照相机视野内出现的时间段 2 那么我们就可以通过去求出没个流星在矩形内的时间段,然后利用扫描法去求。

点击打开链接uva 1398


思路:扫描法
分析:
1 不难发现,流星的轨迹是没有用的,有意义的只是每个流星在照相机视野内出现的时间段
2 那么我们就可以通过去求出没个流星在矩形内的时间段,然后利用扫描法去求。
具体见刘汝佳<<训练指南46页>>

代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;

const int MAXN = 100010;

struct Event{
    double x;
    int type;
    bool operator<(const Event& rhs)const{
         return x < rhs.x || x == rhs.x && type == 1; 
    }

};
Event events[MAXN*2];

//求时间段
void update(int x , int a , int w , double&left , double& right){
     if(a == 0){
       if(x <= 0 || x >= w)
           right = left-1;
     }
     else if(a > 0){
         left = max(left , -x*1.0/a); 
         right = min(right , (w-x)*1.0/a);
     }
     else{
         left = max(left , (w-x)*1.0/a);     
         right = min(right , -x*1.0/a);
     }
}

int main(){
    int Case;
    scanf("%d" , &Case);
    while(Case--){
        int w , h , n , pos = 0;
        scanf("%d%d%d" , &w , &h , &n);
        for(int i = 0 ; i < n ; i++){
           int x , y , a , b;
           scanf("%d%d%d%d" , &x , &y , &a , &b);
           double left = 0 , right = 1e9;
           update(x , a , w , left , right);//水平风向求时间段
           update(y , b , h , left , right);//竖直方向求时间段
           if(right > left){
              events[pos++] = (Event){left , 0};//左端点事件
              events[pos++] = (Event){right , 1};//右端点事件
           }
        }
        int ans = 0;
        int cnt = 0;
        for(int i = 0 ; i < pos ; i++){
           if(events[i].type == 0) //碰到左端点更新cnt和ans
               ans = max(ans , ++cnt);
           else
               cnt--;
        }
        printf("%d\n" , ans);
    }
    return 0;
}



目录
相关文章
|
6月前
|
BI
技术笔记:UVA11174StandinaLine
技术笔记:UVA11174StandinaLine
16 0
uva127 "Accordian" Patience
uva127 "Accordian" Patience
43 0
UVA10474 大理石在哪儿 Where is the Marble?
UVA10474 大理石在哪儿 Where is the Marble?
HDOJ 1302(UVa 573) The Snail(蜗牛爬井)
HDOJ 1302(UVa 573) The Snail(蜗牛爬井)
139 0
UVA - 10474 Where is the Marble
Raju and Meena love to play with Marbles. They have got a lot of marbles with numbers written on them.
1419 0
|
机器学习/深度学习
uva 11538 Chess Queen
点击打开链接 题意:给定一个n*m的矩阵,问有多少种方法放置两个相互攻击的皇后?规定在同一行同一列和同对角线的能够相互攻击 思路: 1 先考虑同一行的情况,n行就有n种情况,每一行有m*(m-1)种,总的是n*m*(m-1); 2 考虑同...
818 0
|
机器学习/深度学习 人工智能
uva 10870 Recurrences
点击打开uva 10870 思路:构造矩阵+矩阵快速幂 分析: 1 题目给定f(n)的表达式 f(n) = a1 f(n - 1) + a2 f(n - 2) + a3 f(n -3) + .
735 0