結果

問題 No.168 ものさし
ユーザー nisizawanisizawa
提出日時 2017-12-19 10:53:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-06-06 15:10:51
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
26,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
11,008 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 40 ms
12,416 KB
testcase_11 AC 133 ms
24,576 KB
testcase_12 AC 408 ms
60,416 KB
testcase_13 AC 588 ms
82,176 KB
testcase_14 AC 571 ms
82,048 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 29 ms
11,008 KB
testcase_17 AC 35 ms
11,648 KB
testcase_18 AC 49 ms
13,568 KB
testcase_19 AC 549 ms
81,536 KB
testcase_20 AC 572 ms
84,352 KB
testcase_21 AC 593 ms
84,480 KB
testcase_22 AC 591 ms
84,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())
xy_ls = [tuple(map(int, input().split())) for i in range(n)]

def sq_dist(xy1, xy2):
    x1, y1 = xy1
    x2, y2 = xy2
    return (x2 - x1)**2 + (y2 - y1)**2

sq_dist_ls = []
for i in range(n - 1):
    xy1 = xy_ls[i]
    for j in range(i + 1, n):
        xy2 = xy_ls[j]
        heapq.heappush(sq_dist_ls, (sq_dist(xy1, xy2), i, j))

def p_find(memo, p):
    while memo[p] >= 0:
        p = memo[p]
    return p

def p_union(memo, p1, p2):
    p1_root = p_find(memo, p1)
    p2_root = p_find(memo, p2)
    if p1_root != p2_root:
        memo[p1_root] = p2_root

def get_ans(sq_x):
    x = int(sq_x**0.5 // 10 * 10)
    return x + 10 if x**2 < sq_x else x

start = 0
goal = n - 1

memo = [-1] * n
while len(sq_dist_ls) > 0:
    sq_dist, p1, p2 = heapq.heappop(sq_dist_ls)
    p_union(memo, p1, p2)
    if p_find(memo, start) == p_find(memo, goal):
        break

ans = get_ans(sq_dist)
print(ans)
0