結果
問題 | No.168 ものさし |
ユーザー | Tawara |
提出日時 | 2015-09-05 05:26:02 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 725 bytes |
コンパイル時間 | 700 ms |
コンパイル使用メモリ | 77,056 KB |
実行使用メモリ | 105,680 KB |
最終ジャッジ日時 | 2024-07-19 03:43:59 |
合計ジャッジ時間 | 10,681 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,507 ms
91,884 KB |
testcase_01 | AC | 136 ms
80,384 KB |
testcase_02 | AC | 134 ms
80,384 KB |
testcase_03 | AC | 137 ms
80,512 KB |
testcase_04 | AC | 130 ms
80,384 KB |
testcase_05 | AC | 133 ms
80,640 KB |
testcase_06 | AC | 137 ms
80,640 KB |
testcase_07 | AC | 130 ms
80,384 KB |
testcase_08 | AC | 136 ms
80,384 KB |
testcase_09 | AC | 266 ms
83,428 KB |
testcase_10 | AC | 403 ms
84,232 KB |
testcase_11 | AC | 1,386 ms
91,004 KB |
testcase_12 | TLE | - |
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 def dist(p1, p2): d = (Decimal((p1[0]-p2[0])**2 + (p1[1]-p2[1])**2)).sqrt() i_d = int(d) return i_d + (d>i_d) def dijkstra (s, t, L, n): MAX = dist(xy[s],xy[t]) d = [MAX for i in range(n)] Q = list() d[s] = 0 hpush(Q,(0,s)) while Q: tmp = hpop(Q) if tmp[1] == t: break for v in L[tmp[1]]: if tmp[0] > v[0]: tmpd = tmp[0] else: tmpd = v[0] if tmpd < d[v[1]]: d[v[1]] = tmpd hpush(Q,(tmpd,v[1])) return d[t] 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) if j != i] for i in xrange(N)] print (dijkstra(0,N-1,l,N)+9) / 10 * 10