結果

問題 No.168 ものさし
ユーザー noko2250noko2250
提出日時 2015-03-20 00:37:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 849,040 KB
最終ジャッジ日時 2024-06-28 23:36:31
合計ジャッジ時間 9,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
269,436 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 34 ms
53,976 KB
testcase_04 AC 32 ms
53,480 KB
testcase_05 AC 33 ms
52,956 KB
testcase_06 AC 35 ms
54,164 KB
testcase_07 AC 36 ms
54,444 KB
testcase_08 AC 35 ms
54,128 KB
testcase_09 AC 59 ms
71,724 KB
testcase_10 AC 82 ms
79,072 KB
testcase_11 AC 384 ms
203,764 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 AC 88 ms
84,044 KB
testcase_15 AC 35 ms
53,944 KB
testcase_16 AC 59 ms
71,396 KB
testcase_17 AC 84 ms
78,504 KB
testcase_18 AC 98 ms
86,020 KB
testcase_19 MLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/c/Python34/python
# coding: utf-8

import heapq, math

def dist(a, b, c, d):
    return math.sqrt((a-b)*(a-b)+(c-d)*(c-d))

def main():
    n = int(input())
    x, y = [0] * n, [0] * n
    for i in range(n):
        [x[i], y[i]] = map(int, input().split())

    L = [[0] * n for _ in range(n)]
    for i in range(n):
        for j in range(i + 1, n):
            L[i][j] = L[j][i] = dist(x[i], x[j], y[i], y[j])

    q = [[0, [0]]]
    d = {}
    while len(q) > 0:
        e, v = heapq.heappop(q)
        t = v[-1]
        if t not in d:
            d[t] = True
            if t == n - 1:
                break
            for i in range(n):
                heapq.heappush(q, [max(L[t][i], e), v+[i]])

    print(int(e) + (10 - int(e) % 10))
    return

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