結果
問題 | No.168 ものさし |
ユーザー | Tawara |
提出日時 | 2015-09-05 04:43:45 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 24,960 KB |
最終ジャッジ日時 | 2024-07-19 03:41:11 |
合計ジャッジ時間 | 6,805 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
from heapq import heappop as hpop, heappush as hpush from decimal import Decimal MAX = 2*10**9 def dijkstra (s, t, L, n): d = [MAX for i in range(n)] Q = list() d[s] = 0 hpush(Q,(0,s)) while Q: tmp = hpop(Q) for v in L[tmp[1]]: tmpd = max(tmp[0],v[0]) if tmpd < d[v[1]]: d[v[1]] = tmpd hpush(Q, (tmpd,v[1])) return d[t] def dist(p1, p2): d = (Decimal((p1[0] - p2[0])**2) + Decimal((p1[1] - p2[1])**2)).sqrt() return int(d) + 1 if d - int(d) > 0 else int(d) N = int(raw_input()) xy = [map(int,raw_input().split()) for i in xrange(N)] l = [[(dist(xy[i],xy[j]),j) for j in xrange(N)] for i in xrange(N)] print (dijkstra(0,N-1,l,N)+9) / 10 * 10