結果

問題 No.94 圏外です。(EASY)
ユーザー tentententen
提出日時 2020-10-27 13:46:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,361 bytes
コンパイル時間 2,797 ms
コンパイル使用メモリ 79,352 KB
実行使用メモリ 57,128 KB
最終ジャッジ日時 2024-07-21 21:55:16
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,704 KB
testcase_01 AC 114 ms
52,680 KB
testcase_02 AC 113 ms
52,656 KB
testcase_03 WA -
testcase_04 AC 149 ms
54,284 KB
testcase_05 AC 176 ms
54,084 KB
testcase_06 AC 192 ms
54,444 KB
testcase_07 AC 207 ms
54,852 KB
testcase_08 AC 217 ms
56,772 KB
testcase_09 AC 239 ms
56,748 KB
testcase_10 AC 240 ms
57,004 KB
testcase_11 AC 243 ms
57,060 KB
testcase_12 AC 243 ms
56,768 KB
testcase_13 AC 238 ms
56,908 KB
testcase_14 AC 241 ms
56,640 KB
testcase_15 AC 243 ms
56,928 KB
testcase_16 AC 248 ms
57,128 KB
testcase_17 AC 242 ms
56,692 KB
testcase_18 AC 243 ms
56,852 KB
testcase_19 AC 255 ms
56,880 KB
testcase_20 AC 121 ms
52,832 KB
testcase_21 AC 124 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        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