結果

問題 No.96 圏外です。
ユーザー vwxyzvwxyz
提出日時 2024-05-03 16:23:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,309 bytes
コンパイル時間 3,720 ms
コンパイル使用メモリ 267,856 KB
実行使用メモリ 24,732 KB
最終ジャッジ日時 2024-05-03 16:23:16
合計ジャッジ時間 8,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/dsu>

using namespace std;
using namespace atcoder;

int main() {
    int N;
    cin >> N;
    map<pair<int,int>, vector<tuple<int,int,int>>> XY;
    vector<int> X, Y;
    for (int n = 0; n < N; ++n) {
        int x, y;
        cin >> x >> y;
        XY[{x / 10, y / 10}].push_back({x, y, n});
        X.push_back(x);
        Y.push_back(y);
    }
    dsu UF(N);
    for (auto& [ij, lst] : XY) {
        int i=ij.first;
        int j=ij.second;
        for (int di = -1; di <= 1; ++di) {
            for (int dj = -1; dj <= 1; ++dj) {
                if (!XY.count({i + di, j + dj})) {
                    continue;
                }
                for (auto& [x, y, n] : XY[{}]) {
                    for (auto& [xx, yy, nn] : XY[{i + di, j + dj}]) {
                        if ((x - xx) * (x - xx) + (y - yy) * (y - yy) <= 100) {
                            UF.merge(n, nn);
                        }
                    }
                }
            }
        }
    }
    double ans = 1;
    for (auto& lst : UF.groups()) {
        for (int i : lst) {
            for (int j : lst) {
                ans = max(ans, sqrt((X[i] - X[j]) * (X[i] - X[j]) + (Y[i] - Y[j]) * (Y[i] - Y[j])) + 2);
            }
        }
    }
    cout << ans << endl;
    return 0;
}
0