結果
問題 | No.168 ものさし |
ユーザー | roiti46 |
提出日時 | 2015-03-20 00:06:55 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 994 bytes |
コンパイル時間 | 1,325 ms |
コンパイル使用メモリ | 76,828 KB |
実行使用メモリ | 283,700 KB |
最終ジャッジ日時 | 2024-06-28 23:30:12 |
合計ジャッジ時間 | 7,673 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
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)]))) for d in dset: D = [[_D[i][j] if _D[i][j] <= d else inf for i in xrange(N)] for j in xrange(N)] if dijkstra() < inf: print d break