結果

問題 No.168 ものさし
ユーザー H3PO4H3PO4
提出日時 2020-08-11 21:39:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 500 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 93,072 KB
最終ジャッジ日時 2024-10-09 11:46:18
合計ジャッジ時間 30,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,140 ms
61,944 KB
testcase_01 AC 948 ms
54,236 KB
testcase_02 AC 942 ms
54,496 KB
testcase_03 AC 944 ms
54,884 KB
testcase_04 AC 936 ms
54,240 KB
testcase_05 AC 941 ms
54,492 KB
testcase_06 AC 939 ms
54,612 KB
testcase_07 AC 938 ms
54,740 KB
testcase_08 AC 949 ms
54,236 KB
testcase_09 AC 956 ms
54,624 KB
testcase_10 AC 980 ms
54,488 KB
testcase_11 AC 1,170 ms
61,312 KB
testcase_12 AC 1,722 ms
81,148 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 944 ms
54,876 KB
testcase_16 AC 950 ms
54,468 KB
testcase_17 AC 954 ms
54,232 KB
testcase_18 AC 974 ms
55,768 KB
testcase_19 AC 1,533 ms
90,420 KB
testcase_20 AC 1,554 ms
92,060 KB
testcase_21 AC 1,592 ms
92,480 KB
testcase_22 AC 1,616 ms
92,016 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