UVA 11796

题意:  有两个狗, 按照 多边形跑,不知道两条狗的速度,但是狗是同时出发,同时到达终点的

输出两条狗的 最大相距距离 - 最小相距距离;

思路 : 用物理的相对运动来计算, 每次只计算 两条狗的直线运动, 转折点再额外更新

LRJ 模板大法好 !!!LRJ 模板大法好 !!!!LRJ 模板大法好 !!!!

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
const int maxn = 100;
const double eps = 1e-9;

struct Point {
    double x , y;
    Point (double x = 0, double y = 0) : x(x),y(y) {}
};

typedef Point Vector;

int dcmp (double x) { if(fabs(x) < eps) return 0; else return x < 0 ? -1 : 1; }

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);
}
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 - A.y*B.x; }
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;
    if(dcmp(Dot(v1,v2)) < 0 ) return Length(v2);
    else if(dcmp(Dot(v1,v3)) > 0) return Length(v3);
    else return fabs(Cross(v1,v2)) / Length(v1);
}

double MAX,MIN;

void UpDate(Point P, Point A, Point B)
{
    MIN = min(MIN, DistanceToSegment(P,A,B)); ///当前 和 点 到线段的最小距离
    MAX = max(Length(P-A),MAX);
    MAX = max(Length(P-B),MAX);
}

Point Pa[maxn], Pb[maxn];

int main()
{
    int t;
    scanf("%d",&t);
    for(int kase = 1; kase <= t; kase++)
    {
        int A, B;
        scanf("%d %d",&A,&B);
        for(int i = 0; i < A; ++i) cin >> Pa[i].x >> Pa[i].y;
        for(int i = 0; i < B; ++i) cin >> Pb[i].x >> Pb[i].y;

        double LenA = 0, LenB = 0;
        for(int i = 0; i < A-1; ++i) LenA += Length(Pa[i] - Pa[i+1]);
        for(int i = 0; i < B-1; ++i) LenB += Length(Pb[i] - Pb[i+1]);

        MAX = -1e9; MIN = 1e9;
        int sa = 0, sb = 0;           ///下一个转折点
        Point Na = Pa[0], Nb = Pb[0]; /// 起始位置
        while(sa < A-1 && sb < B-1)
        {
            double La = Length(Pa[sa+1] - Na);          /// a 当前到下一个转折点的长度
            double Lb = Length(Pb[sb+1] - Nb);          /// b ...
            double t  = min(La / LenA, Lb / LenB);      /// 运动的时间
            Vector Va = (Pa[sa+1] - Na) / La * t * LenA;/// a 的位移量
            Vector Vb = (Pb[sb+1] - Nb) / Lb * t * LenB;/// b 的位移量
            UpDate(Na,Nb,Nb+Vb-Va);  /// B相对A 的运动就是 NB + Vb - Va;
            Na = Na + Va;            /// 更新 a 的当前点
            Nb = Nb + Vb;
            if(Na == Pa[sa+1]) sa++;  ///如果到了转折点, sa 下一个转折点更新
            if(Nb == Pb[sb+1]) sb++;
        }
        printf("Case %d: %.0lf\n",kase, MAX - MIN);
    }
    return 0;
}
时间: 2024-10-20 15:00:41

UVA 11796的相关文章

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

●UVA 11796 Dog Distance

题链: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2896 题解: 计算几何,骚操作 对于简单情况,即两只狗的路线均为一条线段, 可以从相对运动的角度出发,考虑一直狗不动,另一只狗在运动. 而由于两只狗此时都在做匀速直线运动,所以在那只不懂的狗看来,另一直狗也在匀速直线前行.(物理老师:速度的矢量和!) 所以这个简单情况下,问题就变为

相对运动模拟:UVa 11796 Dog Distance

11796 - Dog Distance 题目大意 甲和乙两条狗分别沿着给定的折线匀速奔跑,同时出发.同时到达,试计算甲和乙在奔跑过程中的最远距离和最近距离的差. 解题思路 模拟整个过程,把总过程分割成一个个子过程:甲和乙的路线都是一条线段,因为运动是相对的,因此也可以认为甲静止不动,乙自己沿着某个相对运动的直线(用相对位移向量表示)走,因此问题转化为点到线段的最小最大距离,注意子过程的最小最大值不代表整个过程的最小最大值,所以每处理完一个子过程就要不断更新. 假设现在甲的位置是Pa,刚经过编号

UVa 11796 Dog Distance

题意: 有甲乙两条狗分别沿着一条折线奔跑,已知它们同时从各自的起点出发,同时到达各自的终点.求整个过程中两条狗的最大距离Max与最小距离Min的差值. 分析: 假设甲乙的路线都是一条线段的简单情况.运动是相对的,我们假定甲不动,乙相对甲的运动也是匀速直线运动.所以就将问题转化成了点到直线的最小和最大距离. 甲或乙每到达一个拐点所对应的时刻称作“关键点”,那么没两个关键点之间的运动都可看做上面分析的简单情况.我们只要及时更新甲乙的位置即可. LenA和LenB分别是两条路线的总长,因为运动时间相同

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

题目传送门 题意:两只狗在折线上跑,速度未知,同时出发,同时达到.问跑的过程中,两狗的最大距离和最小距离的差 分析:训练指南P261,考虑相对运动,设A静止不动,B相对A运动,相对的运动向量:Vb - Va(可以理解为速度矢量),那么就是pa到线段pb-pb+Vb-Va的距离最值 /************************************************ * Author :Running_Time * Created Time :2015/10/22 星期四 10:21

《训练指南》——8.4

Uva 11796: 甲和乙两条狗分别沿着一条折线奔跑.两只狗的速度位置,但已知他们同时出发,同时到达,并且都是匀速奔跑.你的任务是求出甲和乙在奔跑过程中的最远距离和最近距离之差. 分析:这里分析两只狗在运动过程的距离问题,我们这里面临如下两个困难: (1)    两只狗都在动. (2)    狗的运动路线是折线. 为了解决第一个问题,我们这里考虑物理当中的运动相对性,我们假设两只狗当前走得都是直线(简化模型),我们将一直狗视为静止,做其运动方向所在向量的相反向量,将其和另一只狗的运动向量进行合

【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 562 Dividing coins --01背包的变形

01背包的变形. 先算出硬币面值的总和,然后此题变成求背包容量为V=sum/2时,能装的最多的硬币,然后将剩余的面值和它相减取一个绝对值就是最小的差值. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define N 50007 int c[102],d