• C++编程题目------平面上的最接近点对(分治算法)


    题目描述

    给定平面上n个点,找出其中的一对点的距离,使得在这n个点的所有点对中,该距离为所有点对中最小的。

    输入格式

    第一行一个整数 n,表示点的个数。

    接下来 n 行,每行两个实数 x,y ,表示一个点的行坐标和列坐标。

    输出格式

    仅一行,一个实数,表示最短距离,四舍五入保留 4 位小数。

    样例

    样例输入 #1

    1. 3
    2. 1 1
    3. 1 2
    4. 2 2

    样例输出 #1

    1.0000
    
    数据范围与提示

    对于 100% 的数据,保证0

    代码:

    1. #include
    2. using namespace std;
    3. int n;
    4. struct point{
    5. double x,y;
    6. };
    7. point a[10010],tmp[10010];
    8. double ans;
    9. bool cmpx(const point &A,const point &B){
    10. if(A.x==B.x)
    11. return A.y
    12. else
    13. return A.x
    14. }
    15. bool cmpy(const point &A,const point &B){
    16. if(A.y==B.y)
    17. return A.x
    18. else
    19. return A.y
    20. }
    21. double dist(point A,point B){
    22. return sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y));
    23. }
    24. double f(int L,int R){
    25. double ans=2<<18;
    26. if(L==R)
    27. return ans;
    28. else if(L+1==R){
    29. return dist(a[L],a[R]);
    30. }
    31. else{
    32. int mid=(L+R)>>1;
    33. double ans1=f(L,mid);
    34. double ans2=f(mid+1,R);
    35. // cout<
    36. ans=min(ans1,ans2);
    37. // ans=ans1;
    38. // if(ans>ans2)
    39. // ans=ans2;
    40. int cnt=0;
    41. for(int i=L;i<=R;i++)
    42. if (fabs(a[i].x-a[mid].x)<=ans)
    43. tmp[++cnt]=a[i];
    44. sort(tmp+1,tmp+cnt+1,cmpy);
    45. for(int i=1;i
    46. for(int j=i+1;j<=cnt;j++)
    47. if(tmp[j].y-tmp[i].y<=ans)
    48. ans=min(ans,dist(tmp[i],tmp[j]));
    49. return ans;
    50. }
    51. }
    52. int main() {
    53. cin>>n;
    54. for(int i=1;i<=n;i++)
    55. cin>>a[i].x>>a[i].y;
    56. sort(a+1,a+n+1,cmpx);
    57. //for(int i=1;i<=n;i++)
    58. //cout<
    59. ans=f(1,n);
    60. cout<setprecision(4)<
    61. //print("%.4lf\n",ans);
    62. return 0;
    63. }

  • 相关阅读:
    【线性代数基础进阶】向量-补充+练习
    ubuntu20.04的 ROS安装与入门介绍
    全科医学科常用评估量表汇总,建议收藏!
    Selenium基础
    DataFrame在指定位置插入行和列
    字符串拷贝
    Vue Patch,忙啥呢?
    Mybatis(1)—— 快速入门使用持久层框架Mybatis
    Oracle19c安装报错,如何解决?
    【WinMTR】Windows上winmtr的安装使用方法
  • 原文地址:https://blog.csdn.net/would20110710/article/details/134087767