結果

問題 No.96 圏外です。
ユーザー krotonkroton
提出日時 2014-12-07 19:48:11
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 361 ms / 5,000 ms
コード長 3,826 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 86,696 KB
実行使用メモリ 192,960 KB
最終ジャッジ日時 2024-12-24 07:45:32
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
122,308 KB
testcase_01 AC 50 ms
122,180 KB
testcase_02 AC 50 ms
122,368 KB
testcase_03 AC 50 ms
121,928 KB
testcase_04 AC 53 ms
122,368 KB
testcase_05 AC 70 ms
122,312 KB
testcase_06 AC 54 ms
122,624 KB
testcase_07 AC 58 ms
122,692 KB
testcase_08 AC 62 ms
122,824 KB
testcase_09 AC 70 ms
123,200 KB
testcase_10 AC 77 ms
123,332 KB
testcase_11 AC 83 ms
123,588 KB
testcase_12 AC 90 ms
124,104 KB
testcase_13 AC 116 ms
124,544 KB
testcase_14 AC 120 ms
124,868 KB
testcase_15 AC 157 ms
126,208 KB
testcase_16 AC 164 ms
126,208 KB
testcase_17 AC 172 ms
126,848 KB
testcase_18 AC 195 ms
126,976 KB
testcase_19 AC 199 ms
127,020 KB
testcase_20 AC 197 ms
137,108 KB
testcase_21 AC 192 ms
133,740 KB
testcase_22 AC 361 ms
192,896 KB
testcase_23 AC 352 ms
192,960 KB
testcase_24 AC 47 ms
122,180 KB
testcase_25 AC 127 ms
125,568 KB
testcase_26 AC 157 ms
126,536 KB
testcase_27 AC 151 ms
125,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <complex>
#include <queue>
#include <algorithm>
using namespace std;

typedef complex<double> P;
namespace std {
    bool operator < (const P& a, const P& b) {
        return real(a) != real(b) ? real(a) < real(b) : imag(a) < imag(b);
    }
}
double cross(const P& a, const P& b) {
    return imag(conj(a)*b);
}
double dot(const P& a, const P& b) {
    return real(conj(a)*b);
}

int ccw(P a, P b, P c) {
    b -= a; c -= a;
    if (cross(b, c) > 0)   return +1;       // counter clockwise
    if (cross(b, c) < 0)   return -1;       // clockwise
    if (dot(b, c) < 0)     return +2;       // c--a--b on line
    if (norm(b) < norm(c)) return -2;       // a--b--c on line
    return 0;
}

vector<P> convex_hull(vector<P> ps) {
    int n = (int)ps.size(), k = 0;
    sort(ps.begin(), ps.end());
    vector<P> ch(2*n);
    for (int i = 0; i < n; ch[k++] = ps[i++]) // lower-hull
        while (k >= 2 && ccw(ch[k-2], ch[k-1], ps[i]) <= 0) --k;
    for (int i = n-2, t = k+1; i >= 0; ch[k++] = ps[i--]) // upper-hull
        while (k >= t && ccw(ch[k-2], ch[k-1], ps[i]) <= 0) --k;
    ch.resize(k-1);
    return ch;
}

double farthest(const vector<P>& v) {
    int n = (int)v.size();
    
    int si = 0, sj = 0;
    for(int t=0;t<n;t++){
        if (v[t].imag() < v[si].imag())
            si = t;
        if (v[t].imag() > v[sj].imag())
            sj = t;
    }
    
    double res = 0;
    int i = si, j = sj;
    do {
        res = max(res, abs(v[i]-v[j]));
        P di = v[(i+1)%n] - v[i];
        P dj = v[(j+1)%n] - v[j];
        if (cross(di, dj) >= 0)
            j = (j+1)%n;
        else
            i = (i+1)%n;
    } while(!(i == si && j == sj));
    
    return res;
}


const int OFFSET = 10000;
const int B = 30;

int N;
int X[122222], Y[122222];

vector<int> bucket[2222][2222];
vector<int> graph[122222];

bool reachable(int i, int j){
    int dx = X[i] - X[j];
    int dy = Y[i] - Y[j];
    return (dx * dx + dy * dy <= 100);
}

bool used[122222];
double solve(){
    double res = 0;
    for(int i=0;i<N;i++)if(!used[i]){
        vector<P> ps;
        ps.push_back(P(X[i], Y[i]));
        
        queue<int> Q;
        Q.push(i);
        used[i] = true;
        
        while(!Q.empty()){
            int v = Q.front(); Q.pop();
            for(int u : graph[v]){
                if(used[u])continue;
                
                used[u] = true;
                Q.push(u);
                
                ps.push_back(P(X[u], Y[u]));
            }
        }
        
        if(ps.size() <= 1)continue;
        if(ps.size() == 2){
            res = max(res, abs(ps[0] - ps[1]));
            continue;
        }
        
        vector<P> convex = convex_hull(ps);
        res = max(res, farthest(convex));
    }
    
    return res + 2;
}

int main(){
    cin >> N;
    if(N == 0){
        cout << 1 << endl;
        return 0;
    }
    
    for(int i=0;i<N;i++){
        cin >> X[i] >> Y[i];
        
        X[i] += OFFSET;
        Y[i] += OFFSET;
    }
    
    for(int i=0;i<N;i++){
        int ix = X[i] / B;
        int iy = Y[i] / B;
        
        bucket[ix][iy].push_back(i);
    }
    
    for(int i=0;i<N;i++){
        int ix = X[i] / B;
        int iy = Y[i] / B;
        
        for(int dx=-1;dx<=1;dx++)for(int dy=-1;dy<=1;dy++){
            int nx = ix + dx;
            int ny = iy + dy;
            if(nx < 0 || ny < 0)continue;
            
            for(int j : bucket[nx][ny]){
                if(j != i && reachable(i, j)){
                    graph[i].push_back(j);
                }
            }
        }
    }
    
    printf("%.10f\n", solve());
    return 0;
}
0