zoukankan      html  css  js  c++  java
  • poj 1007 Quoit Design(分治)

    Quoit Design

    Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 29694    Accepted Submission(s): 7788


    Problem Description
    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 encircled awarded.
    In the field of Cyberground, the position of each toy is fixed, and the ring is carefully designed so it can only encircle one toy at a time. On the other hand, to make the game look more attractive, the ring is designed to have the largest radius. Given a configuration of the field, you are supposed to find the radius of such a ring.

    Assume that all the toys are points on a plane. A point is encircled by the ring if the distance between the point and the center of the ring is strictly less than the radius of the ring. If two toys are placed at the same point, the radius of the ring is considered to be 0.
     

    Input
    The input consists of several test cases. For each case, the first line contains an integer N (2 <= N <= 100,000), the total number of toys in the field. Then N lines follow, each contains a pair of (x, y) which are the coordinates of a toy. The input is terminated by N = 0.
     

    Output
    For each test case, print in one line the radius of the ring required by the Cyberground manager, accurate up to 2 decimal places. 
     

    Sample Input
    2 0 0 1 1 2 1 1 1 1 3 -1.5 0 0 0 0 1.5 0
     

    Sample Output
    0.71 0.00 0.75
     
    #include <iostream>
    #include <cstdio>
    #include <vector>
    #include <cmath>
    #include <algorithm>
    #include <cstring>
    using namespace std;
    
    const double eps = 1e-7;
    const double INF = 100000000000;
    struct point{
        double x , y;
        point(double a = 0 , double b = 0){
            x = a , y = b;
        }
    };
    vector<point> P;
    int N;
    
    bool cmp(point p1 , point p2){
        if(p1.x == p2.x) return p1.y<p2.y;
        return p1.x<p2.x;
    }
    
    bool cmpy(point p1 , point p2){
        return p1.y<p2.y;
    }
    
    void initial(){
        P.clear();
    }
    
    void readcase(){
        double x , y;
        for(int i = 0; i < N; i++){
            scanf("%lf%lf" , &x , &y);
            P.push_back(point(x , y));
        }
    }
    
    double dis(point p1 , point p2){
        return sqrt((p2.x-p1.x)*(p2.x-p1.x)+(p2.y-p1.y)*(p2.y-p1.y));
    }
    
    double fenzhi(int l , int r){
        if(l == r) return INF;
        if(r-l==1) return dis(P[l] , P[r]);
        int mid = (l+r)/2;
        double d = min(fenzhi(l,mid) , fenzhi(mid+1 , r));
        int index = mid;
        vector<point> tP;
        for(int i = mid+1; i <= r; i++){
            if(d-(P[i].x-P[mid].x) >= eps) tP.push_back(P[i]);
        }
        sort(tP.begin() , tP.end() , cmpy);
        while(d-(P[mid].x-P[index].x) >= eps && index >= l){
            for(int i = 0; i < tP.size(); i++){
                if(tP[i].y-P[index].y-d>=eps) break;
                d = min(d , dis(tP[i] , P[index]));
            }
            index--;
        }
        return d;
    }
    
    void computing(){
        sort(P.begin() , P.end() , cmp);
        printf("%.2lf
    " , fenzhi(0 , N-1)/2);
    }
    
    int main(){
        while(scanf("%d" , &N) && N){
            initial();
            readcase();
            computing();
        }
        return 0;
    }
    


  • 相关阅读:
    Importing multi-valued field into Solr from mySQL using Solr Data Import Handler
    VMware Workstation 虚拟机使用无线wifi上网配置
    Linux开发黑客
    GitHub 使用说明
    虹软人脸检测和识别C#
    C#将结构体和指针互转的方法
    笔记本电脑连接wifi,同时提供热点wifi给手机使用
    基于STM32L4的开源NBIOT开发资料
    ESP8266擦除工具完整安装
    开发快平台(M302I小e开发板系列教程)
  • 原文地址:https://www.cnblogs.com/cynchanpin/p/7353319.html
Copyright © 2011-2022 走看看