結果

問題 No.96 圏外です。
ユーザー momoyuumomoyuu
提出日時 2024-07-13 01:14:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,647 ms / 5,000 ms
コード長 3,021 bytes
コンパイル時間 2,472 ms
コンパイル使用メモリ 153,452 KB
実行使用メモリ 24,944 KB
最終ジャッジ日時 2024-07-13 01:14:50
合計ジャッジ時間 14,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,756 KB
testcase_01 AC 5 ms
9,596 KB
testcase_02 AC 7 ms
9,648 KB
testcase_03 AC 5 ms
9,576 KB
testcase_04 AC 9 ms
10,012 KB
testcase_05 AC 14 ms
10,232 KB
testcase_06 AC 23 ms
10,420 KB
testcase_07 AC 47 ms
10,740 KB
testcase_08 AC 59 ms
11,292 KB
testcase_09 AC 90 ms
11,844 KB
testcase_10 AC 164 ms
12,556 KB
testcase_11 AC 205 ms
13,688 KB
testcase_12 AC 171 ms
14,948 KB
testcase_13 AC 456 ms
15,616 KB
testcase_14 AC 462 ms
17,652 KB
testcase_15 AC 822 ms
18,468 KB
testcase_16 AC 809 ms
21,276 KB
testcase_17 AC 719 ms
24,300 KB
testcase_18 AC 1,104 ms
23,688 KB
testcase_19 AC 1,116 ms
23,652 KB
testcase_20 AC 537 ms
22,580 KB
testcase_21 AC 447 ms
22,792 KB
testcase_22 AC 1,647 ms
24,936 KB
testcase_23 AC 497 ms
24,944 KB
testcase_24 AC 5 ms
9,680 KB
testcase_25 AC 464 ms
19,872 KB
testcase_26 AC 614 ms
22,832 KB
testcase_27 AC 531 ms
21,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<iomanip>
#include<math.h>

ll cross(ll a,ll b,ll c,ll d){
    return a * d - b * c;
}

int ccw(pair<ll,ll> a,pair<ll,ll> b,pair<ll,ll> c) {
    ll dx = b.first - a.first;
    ll dy = b.second - a.second;
    ll ddx = c.first - b.first;
    ll ddy = c.second - b.second;
    ll now = cross(dx,dy,ddx,ddy);
    if(now<0) return -1;
    if(now>0) return 1;
    return 0;
}

long double calc(vector<pair<ll,ll>> use) {
    int n = use.size();
    sort(use.begin(),use.end());
    if(n==1) return 2;

    vector<pair<ll,ll>> upper,lower;
    for(int i = 0;i<n;i++){
        while(upper.size()>=2){
            int m = upper.size();
            if(ccw(upper[m-2],upper[m-1],use[i])!=-1) upper.pop_back();
            else break;
        }
        upper.push_back(use[i]);
    }
    for(int i = 0;i<n;i++){
        while(lower.size()>=2){
            int m = lower.size();
            if(ccw(lower[m-2],lower[m-1],use[i])!=1) lower.pop_back();
            else break;
        }
        lower.push_back(use[i]);
    }

    ll ans = 0;
    reverse(lower.begin(),lower.end());
    for(int i = 1;i+1<lower.size();i++) upper.push_back(lower[i]);

    int ni = 0;
    int m = upper.size();
    auto d = [&](int i,int j) -> ll  {
        ll dx = upper[i].first - upper[j].first;
        ll dy = upper[i].second - upper[j].second;
        return (dx*dx+dy*dy);
    };

    bool fn = false;
    for(int i = 0;i<m;i++){
        while(true){
            ans = max(ans,d(i,ni));
            int nj = ni + 1;
            if(nj==m){
                nj = 0;
                fn = true;
            }
            if(nj==i) break;
            if(d(i,nj)>d(i,ni)) ni = nj;
            else break;
        }
        ans = max(d(i,ni),ans);
        if(fn) break;
    }


    return sqrt(ans) + 2;
}

#include<atcoder/dsu>
#include<map>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<ll> x(n),y(n);
    for(int i = 0;i<n;i++) cin>>x[i]>>y[i];
    int B = 10000;
    for(int i = 0;i<n;i++) x[i] += B;
    vector<map<int,int>> memo(1<<17);
    atcoder::dsu uf(n);
    long double ans = 1;
    for(int i = 0;i<n;i++) memo[x[i]][y[i]] = i;

    
    for(int i = 0;i<n;i++){
        for(int ni = 0;ni<=10;ni++){
            for(int nj = 0;nj<=10;nj++){
                ll now = ni * ni + nj * nj;
                if(now>100) break;
                for(int nni = -1;nni<=1;nni+=2) for(int nnj = -1;nnj<=1;nnj+=2){
                    int xx = x[i] + ni * nni;
                    int yy = y[i] + nj * nnj;
                    if(xx<0) continue;
                    if(memo[xx].find(yy)!=memo[xx].end()) uf.merge(i,memo[xx][yy]);
                }
            }
        }
    }

    for(auto&now:uf.groups()){
        vector<pair<ll,ll>> use;
        for(int i:now) use.push_back(make_pair(x[i],y[i]));
        ans = max(ans,calc(use));
    }

    cout<<setprecision(30)<<fixed<<ans<<endl;

}
0