結果

問題 No.94 圏外です。(EASY)
ユーザー htensaihtensai
提出日時 2019-12-06 08:37:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 202 ms / 5,000 ms
コード長 2,999 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 80,284 KB
実行使用メモリ 44,884 KB
最終ジャッジ日時 2024-06-02 09:12:00
合計ジャッジ時間 6,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,440 KB
testcase_01 AC 91 ms
41,596 KB
testcase_02 AC 105 ms
41,260 KB
testcase_03 AC 105 ms
41,068 KB
testcase_04 AC 118 ms
41,872 KB
testcase_05 AC 146 ms
41,896 KB
testcase_06 AC 151 ms
42,636 KB
testcase_07 AC 160 ms
42,588 KB
testcase_08 AC 158 ms
43,288 KB
testcase_09 AC 179 ms
43,884 KB
testcase_10 AC 186 ms
43,816 KB
testcase_11 AC 187 ms
43,660 KB
testcase_12 AC 185 ms
44,532 KB
testcase_13 AC 171 ms
43,928 KB
testcase_14 AC 200 ms
43,904 KB
testcase_15 AC 195 ms
44,884 KB
testcase_16 AC 189 ms
44,036 KB
testcase_17 AC 189 ms
43,988 KB
testcase_18 AC 190 ms
43,776 KB
testcase_19 AC 202 ms
43,864 KB
testcase_20 AC 112 ms
40,996 KB
testcase_21 AC 99 ms
40,080 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());
		}
		Arrays.sort(points);
		UnionFindTree uft = new UnionFindTree(n);
		for (int i = 0; i < n - 1; i++) {
		    for (int j = i + 1; j < n; j++) {
		        if (points[j].x - points[i].x > 10) {
		            break;
		        }
		        if (points[i].distance2(points[j]) <= 100) {
		            uft.unite(i, j);
		        }
		    }
		}
		int max = 0;
		HashMap<Integer, ArrayList<Integer>> map = uft.getMap();
		for (ArrayList<Integer> 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, points[list.get(i)].distance2(points[list.get(j)]));
		        }
		    }
		}
		System.out.println(Math.sqrt(max) + 2);
   }
   
   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 void unite(int x, int y) {
           int xx = find(x);
           int yy = find(y);
           if (xx == yy) {
               return;
           }
           parents[xx] = yy;
       }
       
       public HashMap<Integer, ArrayList<Integer>> getMap() {
           HashMap<Integer, ArrayList<Integer>> ret = new HashMap<>();
           for (int i = 0; i < parents.length; i++) {
               int x = find(i);
               if (ret.containsKey(x)) {
                   ret.get(x).add(i);
               } else {
                   ArrayList<Integer> list = new ArrayList<>();
                   list.add(i);
                   ret.put(x, list);
               }
           }
           return ret;
       }
       
       public String toString() {
           StringBuilder sb = new StringBuilder();
           for (int x : parents) {
               sb.append(x).append(" ");
           }
           return sb.toString();
       }
   }
   
   static class Point implements Comparable<Point> {
       int x;
       int y;
       
       public Point(int x, int y) {
           this.x = x;
           this.y = y;
       }
       
       public int compareTo(Point another) {
           if (x == another.x) {
               return y - another.y;
           } else {
               return x - another.x;
           }
       }
       
       public int distance2(Point another) {
           return (x - another.x) * (x - another.x) + (y - another.y) * (y - another.y);
       }
   }
   
}

0