Dog Distance(UVA11796)

【分析】
  先看一种简单的情况:甲和乙的路线都是一条线段。因为运动是相对的,因此也可以认为甲静止不动,乙沿着自己的直线走,因此问题转化为求点到线段的最小距离和最大距离;
  有了简化版的分析,只需要模拟整个过程,设现在甲的位置在Pa,刚刚经过编号为Sa的拐点;乙的位置是Pb,刚刚经过编号为Sb的拐点,则我们只需要计算他们俩谁先到拐点,那么在这个时间点之前的问题就是我们刚刚讨论过的“简化版”。求解完毕之后,需要更新甲乙的位置,如果正好到达下一个拐点,还需要更新Sa和/或Sb,然后继续模拟。因为每次至少有一条狗到达拐点,所以子问题的求解次数不会超过A+B。
#include<cstdio>
#include<cmath>
#include<iostream>
#define PI acos(-1.0)
#define NN 1e9
const int mmax=60;
double Max,Min;
using namespace std;

struct Point
{
    double x,y;
    Point(double x=0,double y=0):x(x),y(y){}//构造函数,方便代码编写

};

typedef Point Vector;//Vector只是Point的别名

//向量+向量=向量;    向量+点=点
Vector operator + (Vector A,Vector B){return Vector(A.x+B.x,A.y+B.y);}

//点-点=向量
Vector operator - (Point A,Point B){return Vector(A.x-B.x,A.y-B.y);}

//向量*数=向量
Vector operator * (Vector A,double p){return Vector(A.x*p,A.y*p);}

//向量/数=向量
Vector operator / (Vector A,double p){return Vector(A.x/p,A.y/p);}

//
bool operator < (const Point& a,const Point& b){return a.x<b.x||(a.x==b.x && a.y<b.y);}

//
const double eps = 1e-10;
//三态函数
int dcmp(double x){if(fabs(x)<eps)return 0;else return x < 0 ? -1 : 1;}
//相等
bool operator == (const Point& a,const Point& b){return dcmp(a.x-b.x)==0 && dcmp(a.y-b.y)==0;}

double Dot(Vector A,Vector B){return A.x*B.x+A.y*B.y;}
double length(Vector A){return sqrt(Dot(A,A));}
double Angle(Vector A,Vector B){return acos(Dot(A,B)/length(A)/length(B));}

double Cross(Vector A,Vector B){return A.x*B.y-B.x*A.y;}
double Area2(Point A,Point B,Point C){return Cross(B-A,C-A);}

double DistanceToSegment(Point P,Point A,Point B)
{
    if(A==B)return length(P-A);
    Vector v1=B-A,v2=P-A,v3=P-B;
    //点积判断P点投影的位置
    if(dcmp(Dot(v1,v2))<0) return length(v2);//A左边
    else if(dcmp(Dot(v1,v3)>0))return length(v3);//B右边
    else return fabs(Cross(v1,v2))/length(v1);
}

//输入函数
Point read_point(Point &P)
{
    scanf("%lf%lf",&P.x,&P.y);
    return P;
}

void update(Point P,Point A,Point B)
{
    Min=min(Min,DistanceToSegment(P,A,B));
    Max=max(Max,length(P-A));
    Max=max(Max,length(P-B));
}
int main()
{
    int T,A,B,kase=1;
    Point P[mmax],Q[mmax];
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d",&A,&B);

        for(int i=0;i<A;i++)
        {
            P[i]=read_point(P[i]);
        }
        for(int i=0;i<B;i++)
        {
            Q[i]=read_point(Q[i]);
        }

        double LenA=0,LenB=0;
        for(int i=0;i<A-1;i++)
        {
            LenA+=length(P[i+1]-P[i]);
        }
        for(int i=0;i<B-1;i++)
        {
            LenB+=length(Q[i+1]-Q[i]);
        }
        //LenA和LenB表示距离同时也表示速度

        int Sa=0,Sb=0;
        Max=-NN;
        Min=NN;
        Point Pa=P[0],Pb=Q[0];//当前位置
        while(Sa<A-1&&Sb<B-1)
        {
            double La=length(P[Sa+1]-Pa);//甲到下一拐点的距离
            double Lb=length(Q[Sb+1]-Pb);//乙到下一拐点的距离
            double t=min(La/LenA,Lb/LenB);

            Vector Va=(P[Sa+1]-Pa)/La*t*LenA;//甲的位移向量
            Vector Vb=(Q[Sb+1]-Pb)/Lb*t*LenB;//乙的位移向量
            update(Pa,Pb,Pb+Vb-Va);/****把a看成静止的,则b相对从Pb运动到了Vb-Va处。****/
            Pa=Pa+Va;
            Pb=Pb+Vb;
            if(Pa==P[Sa+1])Sa++;
            if(Pb==Q[Sb+1])Sb++;
        }
        printf("Case %d: %.0lf\n",kase++,Max-Min);
    }
    return 0;
}

/**
2
2 2
0 0 10 0
0 1 10 1
3 2
635 187 241 269 308 254
117 663 760 413

**/
时间: 2024-10-06 08:05:07

Dog Distance(UVA11796)的相关文章

【UVA】11796 - Dog Distance(相对运动)

因为a,b是同时出发,同时达到,但是他们的速度不一定一样,所以我们可以设他们的速度为La,Lb(La,Lb为a,b狗的总路程) 那么,如何a,b都是沿着直线运动的时候如何求他们之间的最短最长距离呢? 因为运动都是相对的,所以我们可以把a看成不懂的,而b相对于a的移动方向就是Vb - Va,因此就可以看成a和线段 b + (Vb -Va)之间的关系了 至于方向Va,Vb向量怎么求,我们可以利用单位向量 X 移动时间 X 移动速度 得到. 经典的一道题,顺便还修复了一个模板的BUG: 1412818

UVA - 11796 - Dog Distance (计算几何~)

不得不感叹,计算几何真是太美丽了!! AC代码: #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> #include <cmath> using namespace std; struct Point { double x, y; Point(double x = 0, double y = 0) : x(x) , y(y) { } }; t

uva 11796 Dog Distance (计算几何-点和直线)

C Dog Distance Input Standard Input Output Standard Output Two dogs, Ranga and Banga, are running randomly following two different paths. They both run for T seconds with different speeds. Ranga runs with a constant speed of R m/s, whereas Banga runs

461. Hamming Distance(leetcode)

The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, calculate the Hamming distance. Note:0 ≤ x, y < 2^31. Example: Input: x = 1, y = 4 Output: 2 Explanation:

从0开始的LeetCode生活—461-Hamming Distance(汉明距离)

题目: The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, calculate the Hamming distance. Note: 0 ≤ x, y < 231. Example: Input: x = 1, y = 4 Output: 2 Explanati

POJ-2689-Prime Distance(筛法)

Language: Default Prime Distance Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 15777   Accepted: 4194 Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the int

[leetcode72]Edit Distance(dp)

题目链接:https://leetcode.com/problems/edit-distance/ 题意:求字符串的最短编辑距离,就是有三个操作,插入一个字符.删除一个字符.修改一个字符,最终让两个字符串相等. DP,定义两个字符串a和b,dp(i,j)为截至ai-1和bj-1时的最短编辑距离. 当ai-1=bi-1的时候,有dp(i,j)=min(dp(i,j),dp(i-1,j-1)),对应不做任何操作: 不相等的时候会有dp(i,j)=min(dp(i,j),dp(i-1,j-1)+1),

HDU 5102 The K-th Distance(模拟)

题意:输入一棵树,输出前k小的点对最短距离dis(i,j)的和. 模拟,官方题解说得很清楚了.不重复了. http://bestcoder.hdu.edu.cn/ 需要注意的是,复杂度要O(n+k),不能用set,map之类的标记是否访问. 一开始TLE了,去掉标记后wa了.最后发现对队列的元素加个前缀,就可以了,即标记该条边是从哪个点延伸的. #include <cstdio> #include <cstring> #include <iostream> #inclu

0x31 prime distance(质数)

题目描述: 给定两个整数L和U,你需要在闭区间[L,U]内找到距离最接近的两个相邻质数C1和C2(即C2-C1是最小的),如果存在相同距离的其他相邻质数对,则输出第一对. 同时,你还需要找到距离最远的两个相邻质数D1和D2(即D1-D2是最大的),如果存在相同距离的其他相邻质数对,则输出第一对. 输入格式: 每行输入两个整数L和U,其中L和U的差值不会超过1000000. 输出格式: 对于每个L和U ,输出一个结果,结果占一行. 结果包括距离最近的相邻质数对和距离最远的相邻质数对.(具体格式参照