結果

問題 No.168 ものさし
ユーザー しらっ亭しらっ亭
提出日時 2015-06-19 00:50:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,099 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,312 KB
最終ジャッジ日時 2024-07-07 03:48:07
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
18,944 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 WA -
testcase_03 AC 25 ms
11,008 KB
testcase_04 AC 26 ms
11,136 KB
testcase_05 AC 26 ms
11,008 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 39 ms
11,776 KB
testcase_11 AC 155 ms
17,792 KB
testcase_12 AC 383 ms
33,152 KB
testcase_13 AC 513 ms
41,984 KB
testcase_14 AC 261 ms
40,448 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 28 ms
11,008 KB
testcase_17 AC 34 ms
11,392 KB
testcase_18 AC 47 ms
12,544 KB
testcase_19 AC 500 ms
44,288 KB
testcase_20 AC 329 ms
45,184 KB
testcase_21 AC 549 ms
44,544 KB
testcase_22 AC 397 ms
45,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
import math


def d2(p1, p2):
    return (p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2


def dij(n, ps):
    start = 0
    goal = n - 1

    d2mat = [[0] * n for i in range(n)]

    for i in range(n):
        for j in range(i + 1, n):
            d2mat[i][j] = d2mat[j][i] = d2(ps[i], ps[j])

    d = [d2mat[start][i] for i in range(n)]

    hq = []
    for i in range(n):
        heappush(hq, (d[i], i))

    while hq:
        m, i = heappop(hq)

        if i == goal:
            return m

        for j in range(n):
            dij = d2mat[i][j]
            mj = max(m, dij)
            if d[j] > mj:
                d[j] = mj
                heappush(hq, (mj, j))
    return d[goal]


def solve(n, ps):
    ans = dij(n, ps)
    a2 = math.sqrt(ans)
    c = math.ceil(a2 / 10)

    return min(filter(lambda a: (a * 10) ** 2 > ans, [c - 1, c, c + 1])) * 10


def main():
    n = int(input())
    ps = []
    for i in range(n):
        x, y = list(map(int, input().split()))
        ps.append((x, y))
    print(solve(n, ps))


if __name__ == '__main__':
    main()
0