結果

問題 No.94 圏外です。(EASY)
ユーザー tentententen
提出日時 2020-10-27 13:47:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 2,448 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 79,536 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-07-21 21:55:25
合計ジャッジ時間 7,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,092 KB
testcase_01 AC 107 ms
40,412 KB
testcase_02 AC 124 ms
41,456 KB
testcase_03 AC 120 ms
41,312 KB
testcase_04 AC 146 ms
41,524 KB
testcase_05 AC 183 ms
42,036 KB
testcase_06 AC 192 ms
42,496 KB
testcase_07 AC 199 ms
42,952 KB
testcase_08 AC 221 ms
43,536 KB
testcase_09 AC 236 ms
43,884 KB
testcase_10 AC 226 ms
44,100 KB
testcase_11 AC 237 ms
43,900 KB
testcase_12 AC 230 ms
43,960 KB
testcase_13 AC 235 ms
43,548 KB
testcase_14 AC 236 ms
44,456 KB
testcase_15 AC 240 ms
43,996 KB
testcase_16 AC 228 ms
44,364 KB
testcase_17 AC 223 ms
43,748 KB
testcase_18 AC 229 ms
43,660 KB
testcase_19 AC 262 ms
43,676 KB
testcase_20 AC 130 ms
41,484 KB
testcase_21 AC 123 ms
41,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if (n == 0) {
            System.out.println(1);
            return;
        }
        Point[] points = new Point[n];
        for (int i = 0; i < n; i++) {
            points[i] = new Point(sc.nextInt(), sc.nextInt());
        }
        UnionFindTree uft = new UnionFindTree(n);
        for (int i = 0; i < n - 1; i++) {
            for (int j = i + 1; j < n; j++) {
                if (uft.same(i, j)) {
                    continue;
                }
                if (points[i].getDist(points[j]) <= 100) {
                    uft.unite(i, j);
                }
            }
        }
        HashMap<Integer, ArrayList<Point>> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int key = uft.find(i);
            if (!map.containsKey(key)) {
                map.put(key, new ArrayList<>());
            }
            map.get(key).add(points[i]);
        }
        int max = 0;
        for (ArrayList<Point> list : map.values()) {
            for (int i = 0; i < list.size() - 1; i++) {
                for (int j = i + 1; j < list.size(); j++) {
                    max = Math.max(max, list.get(i).getDist(list.get(j)));
                }
            }
        }
        System.out.println(Math.sqrt(max) + 2);
    }
    
    static class Point {
        int x;
        int y;
        
        public Point(int x, int y) {
            this.x = x;
            this.y = y;
        }
        
        public int getDist(Point another) {
            return (x - another.x) * (x - another.x) + (y - another.y) * (y - another.y);
        }
    }
    
    static class UnionFindTree {
        int[] parents;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
            }
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                return parents[x] = find(parents[x]);
            }
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parents[find(x)] = find(y);
            }
        }
    }
}
0