結果

問題 No.94 圏外です。(EASY)
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-21 14:56:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,501 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 76,968 KB
実行使用メモリ 57,144 KB
最終ジャッジ日時 2024-06-13 00:30:47
合計ジャッジ時間 7,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,312 KB
testcase_01 AC 123 ms
54,248 KB
testcase_02 AC 130 ms
54,100 KB
testcase_03 WA -
testcase_04 AC 138 ms
53,816 KB
testcase_05 AC 170 ms
54,308 KB
testcase_06 AC 173 ms
54,540 KB
testcase_07 AC 194 ms
54,760 KB
testcase_08 AC 189 ms
56,924 KB
testcase_09 AC 220 ms
56,896 KB
testcase_10 AC 215 ms
56,792 KB
testcase_11 AC 225 ms
56,784 KB
testcase_12 AC 219 ms
57,144 KB
testcase_13 AC 222 ms
56,916 KB
testcase_14 AC 220 ms
56,436 KB
testcase_15 AC 217 ms
56,728 KB
testcase_16 AC 214 ms
56,476 KB
testcase_17 AC 264 ms
57,008 KB
testcase_18 AC 222 ms
56,976 KB
testcase_19 AC 235 ms
56,608 KB
testcase_20 AC 128 ms
53,976 KB
testcase_21 AC 115 ms
52,524 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 = 0;
    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