結果

問題 No.94 圏外です。(EASY)
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-21 14:57:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 5,000 ms
コード長 1,501 bytes
コンパイル時間 4,559 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 59,492 KB
最終ジャッジ日時 2023-09-03 19:39:27
合計ジャッジ時間 8,317 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
55,856 KB
testcase_01 AC 108 ms
55,552 KB
testcase_02 AC 108 ms
55,712 KB
testcase_03 AC 112 ms
55,868 KB
testcase_04 AC 129 ms
55,712 KB
testcase_05 AC 167 ms
56,288 KB
testcase_06 AC 173 ms
57,028 KB
testcase_07 AC 190 ms
57,120 KB
testcase_08 AC 193 ms
59,444 KB
testcase_09 AC 217 ms
59,492 KB
testcase_10 AC 211 ms
58,960 KB
testcase_11 AC 226 ms
59,360 KB
testcase_12 AC 205 ms
59,016 KB
testcase_13 AC 213 ms
58,344 KB
testcase_14 AC 219 ms
59,052 KB
testcase_15 AC 210 ms
59,212 KB
testcase_16 AC 199 ms
59,124 KB
testcase_17 AC 208 ms
59,436 KB
testcase_18 AC 208 ms
59,008 KB
testcase_19 AC 234 ms
59,080 KB
testcase_20 AC 119 ms
56,068 KB
testcase_21 AC 108 ms
56,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static int[] par;
  static int[] rank;
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    par = new int[n];
    rank = new int[n];
    long[] x = new long[n];
    long[] y = new long[n];
    init(n);
    for(int i = 0; i < n; i++) {
      x[i] = sc.nextLong();
      y[i] = sc.nextLong();
    }
    for(int i = 0; i < n - 1; i++) {
      for(int j = i + 1; j < n; j++) {
        if(((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j])) <= 100) unite(i, j);
      }
    }
    double ans = 0;
    for(int i = 0; i < n - 1; i++) {
      for(int j = i + 1; j < n; j++) {
        if(same(i, j)) ans = Math.max(ans, Math.sqrt(((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j])))); 
      }
    }
    ans += 2;
    if(n == 0) ans = 1;
    System.out.println(ans);
  }
  static void init(int m) {
      for(int i = 0; i < m; i++) {
        par[i] = i;
        rank[i] = 0;
      }
    }
  static int find(int x) {
      if(par[x] == x) {
        return x;
      } else {
        return par[x] = find(par[x]);
      }
    }
  static void unite(int x, int y) {
      x = find(x);
      y = find(y);
      if(x != y) {
        if(rank[x] < rank[y]) {
          par[x] = y;
        } else {
          par[y] = x;
          if(rank[x] == rank[y]) {
            rank[x]++;
          }
        }
      }
    }
  static boolean same(int x, int y) {
      return find(x) == find(y);
    }
}
0