結果

問題 No.168 ものさし
ユーザー TawaraTawara
提出日時 2015-09-05 17:24:06
言語 Python2
(2.7.18)
結果
AC  
実行時間 823 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-06-06 15:03:07
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
37,888 KB
testcase_01 AC 20 ms
8,320 KB
testcase_02 AC 20 ms
8,064 KB
testcase_03 AC 19 ms
7,936 KB
testcase_04 AC 19 ms
8,192 KB
testcase_05 AC 18 ms
8,320 KB
testcase_06 AC 20 ms
8,320 KB
testcase_07 AC 19 ms
8,064 KB
testcase_08 AC 19 ms
8,320 KB
testcase_09 AC 25 ms
8,704 KB
testcase_10 AC 42 ms
11,136 KB
testcase_11 AC 202 ms
34,432 KB
testcase_12 AC 598 ms
102,272 KB
testcase_13 AC 797 ms
143,872 KB
testcase_14 AC 697 ms
142,336 KB
testcase_15 AC 20 ms
8,064 KB
testcase_16 AC 23 ms
8,448 KB
testcase_17 AC 31 ms
9,728 KB
testcase_18 AC 54 ms
13,696 KB
testcase_19 AC 788 ms
137,856 KB
testcase_20 AC 721 ms
143,616 KB
testcase_21 AC 823 ms
143,616 KB
testcase_22 AC 740 ms
143,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop as hpop, heappush as hpush
from decimal import Decimal
def sq_dist(p1, p2):
	return (p1[0]-p2[0])**2+(p1[1]-p2[1])**2
def solve(s, t, L, n):
	MAX = sq_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 = [[(sq_dist(xy[i],xy[j]),j) for j in xrange(N) if j != i] for i in xrange(N)]
max_d = Decimal(solve(0,N-1,l,N)).sqrt()
i_d = int(max_d)
print (i_d+(max_d>i_d)+9) / 10 * 10
0