程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> poj 3714 Raid 分治法求平面最近點對

poj 3714 Raid 分治法求平面最近點對

編輯:關於C++

題意:

給平面上的n個點,求兩點間的最短距離。

分析:

分治法,保存點用vector會tle...

代碼:

//poj 3714
//sep9
#include 
#include 
#include 
using namespace std;
const double INF=1e50;
struct P
{
	double x,y;
	int type;
}p[240000],b[240000];

bool cmp_x(P a,P b)
{
	return a.x=d)
			continue;
		for(int j=0;j=d)
				break;
			if(a[i].type==b[yn-1-j].type)
				continue;
			d=min(d,sqrt(dx*dx+dy*dy));
		}
		b[yn++]=a[i];	
	}
	return d;
}

int main()
{
	int cases;
	scanf("%d",&cases);
	while(cases--){
		int i,n;
		scanf("%d",&n);		
		for(i=0;i

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved