平面最近点对 ZOJ 2107 POJ 3714

分治法求最近点对,模板题

第二题稍微判断一下即可

总结一下分治法基本写法:

第一部分:边界判断

第二部分:递归函数

第三部分:区间合并

第一题:

#include<stdio.h>
#include<math.h>
#include<algorithm>
using namespace std;
const double eps=1e-8;
struct Point {
	double x,y;
}p[100005],tmp[100005];
int n;
double dist(Point a,Point b){
	return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
int cmpxy(Point a,Point b){
	if(a.x!=b.x) return a.x<b.x;
	return a.y<b.y;
}
int cmpy(Point a,Point b){
	return a.y<b.y;
}
double Closest_Pair(int left,int right){
	double d=1e20;
	if(left==right) return d;
	if(left+1==right) return dist(p[left],p[right]);
	int mid=(left+right)>>1;
	double d1=Closest_Pair(left,mid);
	double d2=Closest_Pair(mid+1,right);
	d=min(d1,d2);
	int k=0;
	for(int i=left;i<=right;i++){
		if(fabs(p[mid].x-p[i].x)<d+eps) tmp[k++]=p[i];
	}
	sort(tmp,tmp+k,cmpy);
	for(int i=0;i<k;i++){
		for(int j=i+1;j<k&&tmp[j].y-tmp[i].y<d+eps;j++){
			d=min(d,dist(tmp[i],tmp[j]));
		}
	}

第二题:

/*
 * Author:        lj94093
 * Created Time:  2015/5/20 星期三 下午 8:06:52
 * File Name:     Raid.cpp
 */
#include<stdio.h>
#include<string.h>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<algorithm>
#include<math.h>
using namespace std;
#define out(x) cout<<#x<<": "<<x<<endl
const double eps(1e-8);
const int maxn=100100;
const long long inf=-1u>>1;
typedef long long ll;
struct Point{
	double x,y;
	int kind;
}p[maxn*2],tmp[maxn*2];
int t,n;
int cmpxy(Point a,Point b){
	if(a.x!=b.x) return a.x<b.x;
	return a.y<b.y;
}
int cmpy(Point a,Point b){
	return a.y<b.y;
}
void init() {
	scanf("%d",&n);
	for(int i=0;i<n;i++) {
		scanf("%lf%lf",&p[i].x,&p[i].y);
		p[i].kind=0;
	}
	for(int i=0;i<n;i++) {
		scanf("%lf%lf",&p[i+n].x,&p[i+n].y);
		p[i+n].kind=1;
	}
	sort(p,p+2*n,cmpxy);
}
double dist(Point a,Point b){
	return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
double work(int left,int right) {
	double d=inf;
	if(left==right) return d;
	if(left+1==right){
		if(p[left].kind==p[right].kind) return d;
		else return dist(p[left],p[right]);
	}
	int mid=(left+right)>>1;
	d=min(work(left,mid),work(mid+1,right));

	int k=0;
	for(int i=left;i<=right;i++){
		if(fabs(p[i].x-p[mid].x)<d-eps) tmp[k++]=p[i];
	}
	sort(tmp,tmp+k,cmpy);
	for(int i=0;i<k;i++){
		for(int j=i+1;j<k && p[j].y-p[i].y<d-eps;j++){
			if(p[i].kind==p[j].kind) continue;
			d=min(d,dist(p[i],p[j]));
		}
	}

	return d;
}

int main() {
	#ifndef ONLINE_JUDGE
	freopen("in.txt","r",stdin);
	#endif
	scanf("%d",&t);
	while(t--){
		init();
		printf("%.3f\n",work(0,2*n-1)+eps);
	}

	return 0;
}
时间: 2024-10-13 03:55:43

平面最近点对 ZOJ 2107 POJ 3714的相关文章

POJ 3714 Raid(平面最近点对)

解题思路: 分治法求平面最近点对,点分成两部分,加个标记就好了. #include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> #include <cmath> #include <vector> #include <queue> #include <algorithm> #include <iomanip>

poj 3714 Raid 分治法求平面最近点对

题意: 给平面上的n个点,求两点间的最短距离. 分析: 分治法,保存点用vector会tle... 代码: //poj 3714 //sep9 #include <iostream> #include <algorithm> #include <cmath> using namespace std; const double INF=1e50; struct P { double x,y; int type; }p[240000],b[240000]; bool cmp

POJ 3714 Raid 平面最近点对

题目大意:给出两个集合的点,问这两个集合之间最近的点对的距离是多少. 思路:先要知道平面最近点对的分治算法,剩下的就简单了,只需要在更新答案的时候判断一下两个点是否属于两个集合就可以了. 分治算法总是十分神奇的. 对于平面最近点对,首先按照x坐标排序,然后递归进行分治,每次分治时,先获得分治得到的结果,然后按照这个结果来计算本区间.由于我们只需要计算答案小于这个结果的点对就行了,其中(l,mid)和(mid + 1,r)我们已经得到答案,只需要统计一个点在(l,mid),另一个点在(mid +

zoj 2107&amp;&amp;hdu 1007最近点对问题

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1107 Quoit Design Time Limit: 5 Seconds      Memory Limit: 32768 KB Have you ever played quoit in a playground? Quoit is a game in which flat rings are pitched at some toys, with all the toys

zoj 2107 最近点对

题意: 给出n个点,求最近点对的距离/2. 限制: 2 <= n <= 1e5 思路: 点分治 /*zoj 2107 题意: 给出n个点,求最近点对的距离/2. 限制: 2 <= n <= 1e5 思路: 点分治 */ #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> using namespace std; const double INF

poj 3714 最近点对

题意: 给出n个a类点,n个b类点,求a类点到b类点的最近距离. 限制: 1 <= n <= 1e5 0 <= x,y <= 1e9 思路: 点分治 /*poj 3714 题意: 给出n个a类点,n个b类点,求a类点到b类点的最近距离. 限制: 1 <= n <= 1e5 0 <= x,y <= 1e9 思路: 点分治 */ #include<iostream> #include<cstdio> #include<algorit

【POJ 3714】 Raid

[题目链接] http://poj.org/problem?id=3714 [算法] 分治求平面最近点对 [代码] #include <algorithm> #include <bitset> #include <cctype> #include <cerrno> #include <clocale> #include <cmath> #include <complex> #include <cstdio> #

ZOJ - 2107 Quoit Design [分治]

题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=17751 题目描述:求最近点对 题目分析:分治,(nlogn): 为什么,第二轮按排序:http://noalgo.info/793.html 代码: //problem: zoj 2107 Quoit Design //author: ACsorry //result: Yes #include<iostream> #include<cstdio>

ZOJ 1718 POJ 2031 Building a Space Station 修建空间站 最小生成树 Kruskal算法

题目链接:ZOJ 1718 POJ 2031 Building a Space Station 修建空间站 Building a Space Station Time Limit: 2 Seconds      Memory Limit: 65536 KB You are a member of the space station engineering team, and are assigned a task in the construction process of the statio