結果

問題 No.168 ものさし
ユーザー roiti46roiti46
提出日時 2015-03-20 00:14:37
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,988 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 297,136 KB
最終ジャッジ日時 2024-10-02 07:46:16
合計ジャッジ時間 17,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 454 ms
120,096 KB
testcase_01 AC 69 ms
75,908 KB
testcase_02 AC 70 ms
75,680 KB
testcase_03 AC 71 ms
76,052 KB
testcase_04 AC 73 ms
75,652 KB
testcase_05 AC 72 ms
76,032 KB
testcase_06 AC 84 ms
78,496 KB
testcase_07 AC 69 ms
76,048 KB
testcase_08 AC 71 ms
75,816 KB
testcase_09 AC 122 ms
79,404 KB
testcase_10 AC 152 ms
80,540 KB
testcase_11 AC 407 ms
97,524 KB
testcase_12 AC 1,183 ms
262,912 KB
testcase_13 AC 1,781 ms
292,292 KB
testcase_14 AC 1,827 ms
292,764 KB
testcase_15 AC 85 ms
78,336 KB
testcase_16 AC 120 ms
79,744 KB
testcase_17 AC 139 ms
79,616 KB
testcase_18 AC 202 ms
85,504 KB
testcase_19 AC 1,755 ms
288,384 KB
testcase_20 AC 1,988 ms
293,384 KB
testcase_21 AC 1,884 ms
281,344 KB
testcase_22 AC 1,955 ms
297,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
inf = 10**12
def dist(i,j):
    x1,y1 = XY[i]
    x2,y2 = XY[j]
    d = (x1-x2)**2+(y1-y2)**2
    if d-int(d**0.5)**2 > 0:
        return int(d**0.5)/10*10+10
    else:
        if int(d**0.5)%10 == 0:
            return int(d**0.5)
        else:
            return int(d**0.5)/10*10+10

def dijkstra():
    d = [inf]*N
    used = [False]*N
    d[0] = 0
    while 1:
        v = -1
        for u in xrange(N):
            if not used[u] and (v == -1 or d[u] < d[v]): v = u
        if v == -1: break
        used[v] = True
        for u in xrange(N):
            d[u] = min(d[u], d[v]+D[v][u])
    return d[N-1]
    
N = int(raw_input())
XY = [map(int,raw_input().split()) for i in xrange(N)]
_D = [[dist(i,j) for i in xrange(N)] for j in xrange(N)]
dset = sorted(list(set([_D[i][j] for i in xrange(N) for j in xrange(N)])))
ans = max(dset)
l,p,r = 0,len(dset)/2,len(dset)
for loop in xrange(50):
    D = [[_D[i][j] if _D[i][j] <= dset[p] else inf for i in xrange(N)] for j in xrange(N)]
    if dijkstra() < inf:
        ans = min(ans,dset[p])
        r = p
    else:
        l = p
    p = (r+l)/2
print ans
0