Time Limit: 1 second

Memory Limit: 32 MB

【问题描述】

聚类方法要求将空间中的点集,按照一点的方式进行归类,要求每一类中的点集相互之间的距离足够的“近”。

    聚类的一般方法是选取某一个点P,并用一个距离r作为度量,只要空间中的点Q距离点P的距离不超过r时,我们说点Q和点P是属于同一类的。

    现在我们考虑这么一个问题:

    给定二维空间中的N个点,并给定一个点P,你的任务就是求出在给定这N个点的点集中,距离点P的距离不超过r的最近点的距离。点A(x1,y1)和点B(x2,y2)之间的距离定义为dis(A,B)=|x1-x2|+|y1-y2|。

【输入格式】

输入数据的第一行为两个整数N (10≤N≤100,000)和r(1≤r≤100),分别表示点集中一共有N个不同的点,最近距离必须不超过r。

    之后有N行,每行有两个整数X和Y(-10,000≤X,Y≤10,000),表示二维空间的一个点(X,Y)。

    之后一行有一个整数Q(1≤Q≤10,000),表示询问的次数,之后Q行,每行有两个整数Px和Py,表示询问在给定的N个点中,距离点(Px,Py)的距离不超过r的最近点的距离。

    距离点(Px,Py)的距离不超过r的点数不会超过100个。

【输出格式】

对于每个询问,输出最近距离,如果不存在最近点距离,输出“-1”。

【输入样例1】

  1.     5 1
  2.     1 3
  3.     2 6
  4.     5 3
  5.     -1 5
  6.     6 5
  7.     2
  8.     2 3
  9.     3 2

【输出样例1】

  1.     1
  2.     -1

【题解】

KD-tree的讲解。请在目录里面选kdtree分类。就可以看到一遍详解的文章。

这道题就是要求最邻近的点距离。

如果直接用kd-tree的模板,没法过。最后一个点会超时。

我们在看到当前点离分界面的距离比当前更新到的最短距离小的时候。会往另外一个儿子方向走。

那么我们可以加一句if 离分界面的距离 > r 则不往另一个儿子走。

因为大于r了。往另一个方向走肯定不能得出小于r的结果。没必要更新。

就是变成曼哈顿距离了。

nth_element(a + begin, a + m, a + 1 + end, cmp);

的范围是左闭右开。

所以要加1.

然后m左边就全是小于|等于a[m],右边全部大于||等于m。

【代码】

  1. #include <cstdio>
  2. #include <algorithm>
  3. #include <cmath>
  4.  
  5. const int MAXN = 101000;
  6. const int INF = 2100000000;
  7.  
  8. using namespace std;
  9.  
  10. struct data2
  11. {
  12. int wei[2];
  13. };
  14.  
  15. int n, r, fenlie[MAXN] = { 0 },v,q,ans;
  16. data2 a[MAXN],op;
  17. double fc[2];
  18.  
  19. int cmp(data2 a, data2 b) //写成结构体比较好写比较函数。
  20. {
  21. if (a.wei[fenlie[v]] < b.wei[fenlie[v]])
  22. return 1;
  23. return 0;
  24. }
  25.  
  26. void build(int begin, int end)
  27. {
  28. if (begin >= end)
  29. return;
  30. int m = (begin + end) >> 1;
  31. for (int i = 0; i <= 1; i++)
  32. {
  33. double x = 0;
  34. for (int j = begin; j <= end; j++)
  35. x += a[j].wei[i];
  36. x /= (end - begin + 1);
  37. fc[i] = 0;
  38. for (int j = begin; j <= end; j++)
  39. fc[i] += (a[j].wei[i] - x)*(a[j].wei[i] - x);
  40. fc[i] /= (end - begin + 1);
  41. }
  42. if (fc[0] > fc[1])
  43. fenlie[m] = 0;
  44. else
  45. fenlie[m] = 1;
  46. v = m;
  47. nth_element(a + begin, a + m, a + 1 + end, cmp);
  48. build(begin, m - 1);
  49. build(m + 1, end);
  50. }
  51.  
  52. void input_data()
  53. {
  54. scanf("%d%d", &n, &r);
  55. for (int i = 1; i <= n; i++)
  56. scanf("%d%d", &a[i].wei[0], &a[i].wei[1]);
  57. build(1, n);
  58. }
  59.  
  60. void query(int begin, int end)
  61. {
  62. if (begin > end)
  63. return;
  64. int m = (begin + end) >> 1;
  65. int dis = abs(a[m].wei[0] - op.wei[0]) + abs(a[m].wei[1] - op.wei[1]);
  66. if (dis < ans)
  67. ans = dis;
  68. if (begin == end)
  69. return;
  70. dis = abs(a[m].wei[fenlie[m]] - op.wei[fenlie[m]]);
  71. if (op.wei[fenlie[m]] < a[m].wei[fenlie[m]])
  72. {
  73. query(begin, m - 1);
  74. if (ans > dis && dis < r) //加上一句小于r的判断。不满足就不进入那个儿子。
  75. query(m + 1, end);
  76. }
  77. else
  78. {
  79. query(m + 1, end);
  80. if (ans > dis && dis < r)
  81. query(begin, m - 1);
  82. }
  83. }
  84.  
  85. void output_ans()
  86. {
  87. scanf("%d", &q);
  88. while (q--)
  89. {
  90. ans = INF;
  91. scanf("%d%d", &op.wei[0], &op.wei[1]);
  92. query(1, n);
  93. if (ans <= r)
  94. printf("%d\n", ans);
  95. else
  96. printf("-1\n");
  97. }
  98. }
  99.  
  100. int main()
  101. {
  102. //freopen("F:\\rush.txt", "r", stdin);
  103. input_data();
  104. output_ans();
  105. return 0;
  106. }

【t010】最近距离的更多相关文章

  1. OJ题解记录计划

    容错声明: ①题目选自https://acm.ecnu.edu.cn/,不再检查题目删改情况 ②所有代码仅代表个人AC提交,不保证解法无误 E0001  A+B Problem First AC: 2 ...

  2. iOS之计算上次日期距离现在多久, 如 xx 小时前、xx 分钟前等

    /**  *  计算上次日期距离现在多久  *  *  @param lastTime    上次日期(需要和格式对应)  *  @param format1     上次日期格式  *  @para ...

  3. 挑子学习笔记:对数似然距离(Log-Likelihood Distance)

    转载请标明出处:http://www.cnblogs.com/tiaozistudy/p/log-likelihood_distance.html 本文是“挑子”在学习对数似然距离过程中的笔记摘录,文 ...

  4. 字符串编辑距离(Levenshtein距离)算法

    基本介绍 Levenshtein距离是一种计算两个字符串间的差异程度的字符串度量(string metric).我们可以认为Levenshtein距离就是从一个字符串修改到另一个字符串时,其中编辑单个 ...

  5. [LeetCode] Rearrange String k Distance Apart 按距离为k隔离重排字符串

    Given a non-empty string str and an integer k, rearrange the string such that the same characters ar ...

  6. [LeetCode] Shortest Word Distance III 最短单词距离之三

    This is a follow up of Shortest Word Distance. The only difference is now word1 could be the same as ...

  7. [LeetCode] Shortest Word Distance II 最短单词距离之二

    This is a follow up of Shortest Word Distance. The only difference is now you are given the list of ...

  8. ReactNative 根据scrollView/listview滑动距离动态修改NavBar颜色

    我们常见某些APP上滑的时候,NavBar颜色会从透明渐变为某种颜色 原理非常简单,根据scrollView的回调动态修改NavBar的透明度即可. 在RN中,尤其是ListView中这个回调不是很好 ...

  9. sql server2008根据经纬度计算两点之间的距离

    --通过经纬度计算两点之间的距离 create FUNCTION [dbo].[fnGetDistanceNew] --LatBegin 开始经度 --LngBegin 开始维度 --29.49029 ...

随机推荐

  1. Objective-C基础笔记(4)Category

    OC中提供了一种与众不同的方式--Category,可以动态的为已经存在的类添加新的行为(方法),这样可以保证类的原始设计规模较小,功能增加时再逐步扩展. 在使用Category对类进行扩展时,不需要 ...

  2. 创建VG

    创建VG smit mkvg Add a Volume Group Add a Scalable Volume Group   VOLUME GROUP name                    ...

  3. HDU4630-No Pain No Game(离线,线段树)

    Problem Description Life is a game,and you lose it,so you suicide. But you can not kill yourself bef ...

  4. 可执行EXE在windows调用过程

    举例图中, 一个C#编写的测试程序, 输出两句话分别 : Hello, GoodBye, 介绍其在windows上CLR的调用过程. 1.在执行Main方法之前, CLR会检测出Main的代码引用的所 ...

  5. PatentTips - Interrupt redirection for virtual partitioning

    BACKGROUND The present disclosure relates to the handling of interrupts in a environment that utiliz ...

  6. textview-显示行数限制

    在代码中直接添加 android:maxLines="2" android:ellipsize="end" 跟ellipsize搭配使用,超过两行的时候,第二行 ...

  7. 15、python学习手册之:列表和字典

    1.列表属于可变序列,支持在原处的修改 2.在标准python解锁器内部,列表就是C数组而不是链接结构 3.内置函数map对序列中的各项应用一个函数并把结果收集到一个新的列表中 eg:list(map ...

  8. LeetCode Algorithm 05_Longest Palindromic Substring

    Given a string S, find the longest palindromic substring in S. You may assume that the maximum lengt ...

  9. ab压测返回结果解析

    Server Software:        Apache/2.2.25 (服务器软件名称及版本信息)Server Hostname:        localhost (服务器主机名)Server ...

  10. iOS开发- iOS7显示偏差(UITableView下移)解决的方法

    之前碰到过一个问题. 就是利用storyboard拖动出来的控件, 在iOS7上跑老是莫名的下移. 比方这样(红色区域为多余的) 解决的方法: iOS7在Conttoller中新增了这个属性: aut ...