HDU 3694 Fermat Point in Quadrangle (数学-费马点)

 

HDU 3694 Fermat Point in Quadrangle (数学-费马点)

分类: 数论   138人阅读  评论(0)  收藏  举报
费马点

传送门:http://acm.hdu.edu.cn/showproblem.php?pid=3694


题意:给你四个点,让你求他们的费马点(求一个点到这四个点的距离只和最小)。

题解:通过费马点定理,我们可以得出,当这四个点是凸多边形那么费马点就是对角线的交点,当时凹多边形的时候,费马点为凹进去的那个点。


AC代码:

Accepted 3694 0MS 344K 2985 B G++ XH_Reventon

[cpp]  view plain copy print ?
  1. #include <iostream>  
  2. #include <cstdio>  
  3. #include <cstring>  
  4. #include <string>  
  5. #include <cstdlib>  
  6. #include <cmath>  
  7. #include <vector>  
  8. #include <list>  
  9. #include <deque>  
  10. #include <queue>  
  11. #include <iterator>  
  12. #include <stack>  
  13. #include <map>  
  14. #include <set>  
  15. #include <algorithm>  
  16. #include <cctype>  
  17. #include <cfloat>  
  18. using namespace std;  
  19.   
  20. #define si1(a) scanf("%d",&a)  
  21. #define si2(a,b) scanf("%d%d",&a,&b)  
  22. #define sd1(a) scanf("%lf",&a)  
  23. #define sd2(a,b) scanf("%lf%lf",&a,&b)  
  24. #define ss1(s)  scanf("%s",s)  
  25. #define pi1(a)    printf("%d\n",a)  
  26. #define pi2(a,b)  printf("%d %d\n",a,b)  
  27. #define mset(a,b)   memset(a,b,sizeof(a))  
  28. #define forb(i,a,b)   for(int i=a;i<b;i++)  
  29. #define ford(i,a,b)   for(int i=a;i<=b;i++)  
  30.   
  31. typedef long long LL;  
  32. const int N=6;  
  33. const int INF=0x3f3f3f3f;  
  34. const double PI=acos(-1.0);  
  35. const double eps=1e-8;  
  36.   
  37. struct point  
  38. {  
  39.     double x, y;  
  40. }p[N],res[N];  
  41.   
  42. struct Line  
  43. {  
  44.     double a,b,c;  
  45. };  
  46.   
  47. bool mult(point sp, point ep, point op)  
  48. {  
  49.     return (sp.x - op.x) * (ep.y - op.y) >= (ep.x - op.x) * (sp.y - op.y);  
  50. }  
  51.   
  52. bool operator < (const point &l, const point &r)  
  53. {  
  54.     return l.y < r.y || (l.y == r.y && l.x < r.x);  
  55. }  
  56.   
  57. double dis(point a,point b)//点到点的距离  
  58. {  
  59.     return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));  
  60. }  
  61.   
  62. int tubao(point pnt[], int n)  
  63. {  
  64.     int i, len, top = 1;  
  65.     sort(pnt, pnt + n);  
  66.     if (n == 0)     return 0;  
  67.     res[0] = pnt[0];  
  68.     if (n == 1)     return 1;  
  69.     res[1] = pnt[1];  
  70.     if (n == 2)     return 2;  
  71.     res[2] = pnt[2];  
  72.     for (i = 2; i < n; i++)  
  73.     {  
  74.         while (top && mult(pnt[i], res[top], res[top-1]))  
  75.             top--;  
  76.         res[++top] = pnt[i];  
  77.     }  
  78.     len = top; res[++top] = pnt[n - 2];  
  79.     for (i = n - 3; i >= 0; i--)  
  80.     {  
  81.         while (top!=len && mult(pnt[i], res[top], res[top-1])) top--;  
  82.             res[++top] = pnt[i];  
  83.     }  
  84.     return top; // 返回凸包上顶点的个数,不包括在凸包边上的点  
  85. }  
  86.   
  87. Line get_Line(point p1,point p2)//两点求直线  
  88. {  
  89.     Line tmp;  
  90.     tmp.a=p1.y-p2.y;  
  91.     tmp.b=p2.x-p1.x;  
  92.     tmp.c=p1.x*p2.y-p2.x*p1.y;  
  93.     return tmp;  
  94. }  
  95.   
  96. point Line_Line(Line m1, Line m2)//两条直线交点  
  97. {  
  98.     point tmp;  
  99.     tmp.x=(m1.b*m2.c-m2.b*m1.c)/(m1.a*m2.b-m2.a*m1.b);  
  100.     tmp.y=(m1.c*m2.a-m2.c*m1.a)/(m1.a*m2.b-m2.a*m1.b);  
  101.     return tmp;  
  102. }  
  103.   
  104. double xiaohao(point t)  
  105. {  
  106.     double sum=0;  
  107.     forb(i,0,4)  
  108.         sum+=dis(t,p[i]);  
  109.     return sum;  
  110. }  
  111.   
  112. int main()  
  113. {  
  114.     while(scanf("%lf%lf",&p[0].x,&p[0].y))  
  115.     {  
  116.         if(p[0].x<0)    break;  
  117.         for(int i=1;i<4;i++)  
  118.             scanf("%lf%lf",&p[i].x,&p[i].y);  
  119.         int n=tubao(p,4);  
  120.         if(n==4)//凸多边形  
  121.         {  
  122.             Line l1=get_Line(res[0],res[2]),l2=get_Line(res[1],res[3]);  
  123.             point t=Line_Line(l1,l2);  
  124.             double sum=xiaohao(t);  
  125.             printf("%.4f\n",sum);  
  126.         }  
  127.         else//凹多边形  
  128.         {  
  129.             double mi=xiaohao(p[0]);  
  130.             for(int i=1;i<4;i++)  
  131.                 mi=min(mi,xiaohao(p[i]));  
  132.             printf("%.4f\n",mi);  
  133.         }  
  134.     }  
  135.     return 0;  
  136. }  

你可能感兴趣的:(数论)