結果

問題 No.168 ものさし
ユーザー maspymaspy
提出日時 2020-03-07 06:02:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 732 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 161,720 KB
最終ジャッジ日時 2024-10-14 11:14:53
合計ジャッジ時間 31,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,431 ms
65,840 KB
testcase_01 AC 852 ms
54,356 KB
testcase_02 AC 850 ms
54,484 KB
testcase_03 AC 866 ms
54,740 KB
testcase_04 AC 872 ms
54,608 KB
testcase_05 AC 865 ms
54,616 KB
testcase_06 AC 869 ms
54,484 KB
testcase_07 AC 879 ms
54,488 KB
testcase_08 AC 860 ms
54,356 KB
testcase_09 AC 888 ms
54,736 KB
testcase_10 AC 903 ms
54,864 KB
testcase_11 AC 1,091 ms
64,768 KB
testcase_12 AC 1,789 ms
91,976 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 936 ms
54,484 KB
testcase_16 AC 902 ms
54,740 KB
testcase_17 AC 900 ms
54,616 KB
testcase_18 AC 914 ms
55,892 KB
testcase_19 AC 1,549 ms
105,856 KB
testcase_20 AC 1,559 ms
107,824 KB
testcase_21 AC 1,544 ms
107,696 KB
testcase_22 AC 1,582 ms
161,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
from scipy.sparse.csgraph import connected_components

# %%
N = int(readline())
XY = np.array(read().split(), np.int64)
X = XY[::2]
Y = XY[1::2]

# %%
dx = X[:, None] - X[None, :]
dy = Y[:, None] - Y[None, :]
dist_mat = dx**2 + dy**2

# %%


def test(x):
    graph = dist_mat <= x * x
    _, comp = connected_components(graph, directed=False)
    return comp[0] == comp[-1]


# %%
left = 0
right = 10 ** 9 * 2
while left + 1 < right:
    x = (left + right) // 2
    if test(x):
        right = x
    else:
        left = x

answer = right + (-right) % 10
print(answer)
0