【分治 求最近點對】hdu 1007 Quoit Design
Link:http://acm.split.hdu.edu.cn/showproblem.php?pid=1007
#include <bits/stdc++.h>
using namespace std;
/*
hdu 1007
題意:給出物品在平面上的點座標,求一個環不能一次套到兩的最大半徑,即最近點對距離的一半。
題解:先以x排序,用分治將問題分成左邊部分的最近點對,和左邊的最近點對,左邊右邊各一個點的
最近點對(在算這個的時候應按y排序,將兩點y差大於當前最小值的優化掉)。
*/
const int N = 1e5+5;
const double INF = 1e18;
struct Point{double x,y; } a[N];
bool cmp(Point a,Point b){return a.x < b.x; }
bool cmp2(Point a,Point b){return a.y < b.y; }
double dist(Point a,Point b){return sqrt((a.y-b.y)*(a.y-b.y)+(a.x-b.x)*(a.x-b.x))/2; }
Point temp[N];
double solve(int l, int r){
if(l == r)
return INF;
int mid = (l+r)>>1;
double mi;
mi = solve(l,mid);
mi = min(mi,solve(mid+1,r));
// printf("L=%f R=%f\n",solve(l,mid),solve(mid+1,r));
int top = 0;
temp[top++] = a[mid];
for(int i = mid-1; i >= l; i--){
if(a[mid].x-a[i].x>=mi)
break;
temp[top++] = a[i];
}
for(int i = mid+1; i <= r; i++){
if(a[i].x-a[mid].x>=mi)
break;
temp[top++] = a[i];
}
sort(temp,temp+top,cmp2);
for(int i = 0; i < top; i++){
for(int j = i+1; j < top; j++)
{
if(temp[j].y-temp[i].y>=mi)
break;
mi = min(mi,dist(temp[i],temp[j]));
}
}
return mi;
}
int main()
{
int n;
while(~scanf("%d",&n) && n)
{
for(int i = 0; i < n; i++)
scanf("%lf%lf",&a[i].x,&a[i].y);
sort(a,a+n,cmp);
printf("%.2f\n",solve(0,n-1));
}
return 0;
}
相關文章
- KDTree求平面最近點對
- HDU 2689 【歸併排序求逆序對】排序
- 樹分治 - 點分治
- Note - 樹分治(點分治、點分樹)
- [PAT B] 1007 素數對猜想
- HDU 2689 Sort it【樹狀陣列求逆序對】陣列
- 點分治
- 計算幾何——平面最近點對
- 靜態點分治
- LeetCode169求眾數——分治LeetCode
- PAT-B 1007 素數對猜想【素數】
- 點分治學習筆記筆記
- 最近對問題
- 平面最近點對 & 最小周長三角形 & 曼哈頓距離最近
- HDU 5773 The All-purpose Zero 求LIS
- 【2024-ZR-C Day 5】資料結構(3):莫隊(帶修莫隊、回滾莫隊)、邊分治、點分治、樹分治、動態點分治資料結構
- 聊聊最近求職發生的故事求職
- [題解] [洛谷P7883] 平面最近點對(加強版)
- P4178 Tree——點分治 容斥
- CF1007B 題解
- 「學習筆記」tarjan 求最近公共祖先筆記
- HDU1427速算24點(dfs)
- HDU 1427-速算24點(DFS)
- Leetcode刷題之 【最近的請求次數】LeetCode
- P4149 [IOI2011] Race——點分治 模板
- 分治
- 關點對紅現非求馬圓辦勞ytk
- 最近關於工作的幾點思考
- BZOJ4598: [Sdoi2016]模式字串(點分治 hash)模式字串
- 分治法求眾數和重數(含檔案輸入輸出)
- 分治法
- 分治合集
- CDQ分治
- hdu 2111 Saving HDU (DP)
- 最近感觸最深的一個觀點
- 最近半年來的幾點心得體會
- HDU 3074 Multiply game(線段樹 單點更新)GAM
- hdu 5698 瞬間移動 【質因數分解求組合數】
- Google S2 中的四叉樹求 LCA 最近公共祖先Go