結果

問題 No.94 圏外です。(EASY)
ユーザー yuki2006yuki2006
提出日時 2016-12-18 17:03:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 2,126 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 44,024 KB
最終ジャッジ日時 2024-06-26 08:07:54
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,420 KB
testcase_01 AC 139 ms
41,548 KB
testcase_02 AC 138 ms
41,664 KB
testcase_03 AC 139 ms
41,584 KB
testcase_04 AC 163 ms
41,740 KB
testcase_05 AC 187 ms
41,988 KB
testcase_06 AC 213 ms
43,048 KB
testcase_07 AC 226 ms
42,864 KB
testcase_08 AC 234 ms
43,508 KB
testcase_09 AC 253 ms
43,724 KB
testcase_10 AC 254 ms
43,724 KB
testcase_11 AC 260 ms
44,024 KB
testcase_12 AC 257 ms
43,568 KB
testcase_13 AC 256 ms
43,832 KB
testcase_14 AC 257 ms
43,680 KB
testcase_15 AC 256 ms
43,756 KB
testcase_16 AC 259 ms
43,760 KB
testcase_17 AC 254 ms
43,564 KB
testcase_18 AC 252 ms
43,692 KB
testcase_19 AC 254 ms
43,400 KB
testcase_20 AC 147 ms
41,248 KB
testcase_21 AC 139 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static int distNotSqrt(int A, int B) {
        return A * A + B * B;
    }

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int[] X = new int[N];
        int[] Y = new int[N];

        if (N == 0) {
            System.out.println(1);
            return;
        }

        for (int i = 0; i < N; i++) {
            X[i] = scanner.nextInt();
            Y[i] = scanner.nextInt();
        }
        UnionFind union = new UnionFind(N);
        for (int i = 0; i < N; i++) {
            for (int j = i + 1; j < N; j++) {
                if (distNotSqrt(X[i] - X[j], Y[i] - Y[j]) <= 100) {
                    union.union(i, j);
                }
            }
        }
        int mx = 0;
        for (int i = 0; i < N; i++) {
            for (int j = i + 1; j < N; j++) {
                if (union.same(i, j)) {
                    int len = distNotSqrt(X[i] - X[j], Y[i] - Y[j]);
                    if (mx < len) {
                        mx = len;
                    }
                }
            }
        }
        System.out.println(Math.sqrt(mx) + 2);


    }


}

class UnionFind {
    int[] parent;
    int[] rank;

    public UnionFind(int N) {
        parent = new int[N];
        rank = new int[N];
        for (int i = 0; i < N; i++) {
            parent[i] = i;
        }
    }

    public int find(int A) {
        if (parent[A] == A) {
            return A;
        }
        parent[A] = find(parent[A]);
        return parent[A];
    }

    public boolean same(int A, int B) {
        return find(A) == find(B);
    }

    public boolean union(int A, int B) {
        int Aroot = find(A);
        int Broot = find(B);
        if (Aroot == Broot) {
            return false;
        }
        if (rank[Aroot] > rank[Broot]) {
            parent[Broot] = Aroot;
        } else if (rank[Aroot] < rank[Broot]) {
            parent[Aroot] = Broot;
        } else {
            parent[Aroot] = Broot;
            rank[Broot]++;
        }
        return true;
    }
}
0