結果

問題 No.96 圏外です。
ユーザー momoyuumomoyuu
提出日時 2024-07-13 01:00:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,938 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 154,080 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-07-13 01:01:03
合計ジャッジ時間 29,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 29 ms
6,944 KB
testcase_05 AC 53 ms
6,940 KB
testcase_06 AC 89 ms
6,940 KB
testcase_07 AC 146 ms
6,944 KB
testcase_08 AC 207 ms
6,940 KB
testcase_09 AC 298 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 554 ms
7,936 KB
testcase_12 AC 707 ms
9,472 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2,179 ms
19,968 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1,510 ms
18,276 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

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]);
    }

    long double 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();

    vector<pair<ll,ll>> now;
    for(int i = 0;i<m;i++) now.push_back(upper[i]);
    for(int i = 0;i<m;i++) now.push_back(upper[i]);
    auto d = [&](int i,int j) -> long double {
        ll dx = now[i].first - now[j].first;
        ll dy = now[i].second - now[j].second;
        return sqrt(dx*dx+dy*dy);
    };

    for(int i = 0;i<m;i++){
        int left = i + 1;
        int right = left + m - 1;
        while(right-left>2){
            int m1 = (left+left+right) / 3;
            int m2 = (left+right+right) / 3;
            if(d(i,m1)<d(i,m2)) right = m2;
            else left = m1;
        }
        for(int j = left;j<=right;j++) ans = max(ans,d(i,j));
    }

    return 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];
    atcoder::dsu uf(n);
    map<pair<ll,ll>,int> memo;
    for(int i = 0;i<n;i++) memo[make_pair(x[i],y[i])] = i;
    long double ans = 1;
    for(int i = 0;i<n;i++){
        for(int ni = -10;ni<=10;ni++){
            for(int nj = -10;nj<=10;nj++){
                ll now = ni * ni + nj * nj;
                if(now>100) continue;
                pair<ll,ll> want = make_pair(x[i]+ni,y[i]+nj);
                if(memo.find(want)!=memo.end()) {
                    uf.merge(i,memo[want]);
                }
            }
        }
    }

    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