結果

問題 No.168 ものさし
ユーザー htensaihtensai
提出日時 2020-01-15 17:51:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 2,179 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 51,696 KB
最終ジャッジ日時 2024-06-11 08:00:17
合計ジャッジ時間 7,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
44,536 KB
testcase_01 AC 112 ms
41,088 KB
testcase_02 AC 118 ms
40,980 KB
testcase_03 AC 117 ms
41,144 KB
testcase_04 AC 104 ms
39,840 KB
testcase_05 AC 105 ms
40,776 KB
testcase_06 AC 108 ms
41,076 KB
testcase_07 AC 107 ms
41,300 KB
testcase_08 AC 109 ms
41,104 KB
testcase_09 AC 131 ms
41,268 KB
testcase_10 AC 146 ms
41,840 KB
testcase_11 AC 197 ms
43,924 KB
testcase_12 AC 245 ms
51,364 KB
testcase_13 AC 267 ms
50,992 KB
testcase_14 AC 266 ms
51,088 KB
testcase_15 AC 106 ms
40,264 KB
testcase_16 AC 130 ms
41,352 KB
testcase_17 AC 148 ms
41,616 KB
testcase_18 AC 181 ms
42,308 KB
testcase_19 AC 314 ms
51,696 KB
testcase_20 AC 308 ms
51,640 KB
testcase_21 AC 312 ms
51,696 KB
testcase_22 AC 304 ms
51,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    static int[] base;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] xArr = new int[n];
        int[] yArr = new int[n];
        for (int i = 0; i < n; i++) {
            xArr[i] = sc.nextInt();
            yArr[i] = sc.nextInt();
        }
        long[][] sizes = new long[n][n];
        for (int i = 0; i < n - 1; i++) {
            for (int j = i + 1; j < n; j++) {
                sizes[i][j] = getSize(xArr[i], yArr[i], xArr[j], yArr[j]);
            }
        }
        long left = 0;
        long right = (int)(Math.sqrt(sizes[0][n - 1]) / 10 + 1);
        while (right - left > 1) {
            long m = (left + right) / 2;
            UnionFindTree uft = new UnionFindTree(n);
            for (int i = 0; i < n - 1; i++) {
                for (int j = i + 1; j < n; j++) {
                    if ((m * 10) * (m * 10) >= sizes[i][j]) {
                        uft.unite(i, j);
                    }
                }
            }
            if (uft.same()) {
                right = m;
            } else {
               left = m;
            }
        }
        System.out.println(right * 10);
    }
    
    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 (parents[x] == 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 boolean same() {
            return find(0) == find(parents.length - 1);
        }
    }
    
    static long getSize(long x1, long y1, long x2, long y2) {
        return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
    }
}
0