結果

問題 No.168 ものさし
ユーザー 山本信二山本信二
提出日時 2022-04-17 09:37:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 499 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 93,024 KB
最終ジャッジ日時 2024-06-07 20:03:36
合計ジャッジ時間 32,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,098 ms
62,340 KB
testcase_01 AC 939 ms
54,616 KB
testcase_02 AC 939 ms
54,228 KB
testcase_03 AC 935 ms
54,240 KB
testcase_04 AC 936 ms
54,236 KB
testcase_05 AC 939 ms
54,232 KB
testcase_06 AC 933 ms
54,488 KB
testcase_07 AC 932 ms
54,232 KB
testcase_08 AC 943 ms
54,620 KB
testcase_09 AC 954 ms
54,360 KB
testcase_10 AC 976 ms
54,488 KB
testcase_11 AC 1,173 ms
61,384 KB
testcase_12 AC 1,759 ms
81,132 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 960 ms
54,496 KB
testcase_16 AC 1,007 ms
54,500 KB
testcase_17 AC 1,005 ms
54,240 KB
testcase_18 AC 1,052 ms
55,388 KB
testcase_19 AC 1,608 ms
90,564 KB
testcase_20 AC 1,593 ms
92,364 KB
testcase_21 AC 1,607 ms
92,096 KB
testcase_22 AC 1,606 ms
92,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.sparse.csgraph import connected_components

N = int(input())
P = np.array([tuple(map(int, input().split())) for _ in range(N)],dtype=np.int64)
X, Y = P[:, 0], P[:, 1]
D = (X[:, None] - X[None, :]) ** 2 + (Y[:, None] - Y[None, :]) ** 2


def f(x):
    _, labels = connected_components(D <= x ** 2)
    return labels[0] == labels[-1]


# bisect
l, r = 0, 2 * 10 ** 9
while r - l > 10:
    m = (r + l) // 20 * 10
    if f(m):
        r = m
    else:
        l = m
print(r)
0