結果

問題 No.168 ものさし
ユーザー H3PO4H3PO4
提出日時 2020-08-11 21:23:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 447 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 145,512 KB
最終ジャッジ日時 2024-10-09 11:44:24
合計ジャッジ時間 35,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1,023 ms
61,492 KB
testcase_04 AC 1,043 ms
61,496 KB
testcase_05 AC 1,040 ms
61,488 KB
testcase_06 AC 1,054 ms
61,488 KB
testcase_07 AC 1,041 ms
61,748 KB
testcase_08 AC 1,039 ms
61,488 KB
testcase_09 AC 1,052 ms
61,236 KB
testcase_10 AC 1,071 ms
61,228 KB
testcase_11 AC 1,252 ms
67,244 KB
testcase_12 AC 1,836 ms
86,900 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,039 ms
61,620 KB
testcase_16 AC 1,041 ms
61,612 KB
testcase_17 AC 1,063 ms
61,484 KB
testcase_18 AC 1,071 ms
61,764 KB
testcase_19 AC 1,640 ms
95,580 KB
testcase_20 AC 1,636 ms
97,288 KB
testcase_21 AC 1,674 ms
97,648 KB
testcase_22 AC 1,657 ms
145,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = int(input())
P = np.array([tuple(map(int, input().split())) for _ in range(N)])
D = distance.cdist(P, P)


def f(x):
    _, labels = connected_components(D < x)
    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