結果

問題 No.2179 Planet Traveler
ユーザー 👑 p-adicp-adic
提出日時 2023-05-30 08:16:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,204 ms / 3,000 ms
コード長 527 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-06-08 19:57:40
合計ジャッジ時間 16,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 649 ms
36,096 KB
testcase_12 AC 1,204 ms
35,200 KB
testcase_13 AC 1,082 ms
36,096 KB
testcase_14 AC 655 ms
36,480 KB
testcase_15 AC 661 ms
36,608 KB
testcase_16 AC 663 ms
36,480 KB
testcase_17 AC 1,073 ms
35,712 KB
testcase_18 AC 1,060 ms
35,584 KB
testcase_19 AC 1,087 ms
35,584 KB
testcase_20 AC 160 ms
13,824 KB
testcase_21 AC 982 ms
33,792 KB
testcase_22 AC 647 ms
25,728 KB
testcase_23 AC 576 ms
24,064 KB
testcase_24 AC 857 ms
31,104 KB
testcase_25 AC 688 ms
26,496 KB
testcase_26 AC 960 ms
32,640 KB
testcase_27 AC 170 ms
13,952 KB
testcase_28 AC 467 ms
21,120 KB
testcase_29 AC 886 ms
30,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
I,R=input,range
def J():
	return map(int,I().split())
N=int(I())
P=[0]*N
for i in R(N):
	X,Y,T=J()
	P[i]=[X*X+Y*Y,X,Y,T]
D=[[0]*N for i in R(N)]
for i in R(N):
	p=P[i]
	for j in R(N):
		q=P[j]
		if p[3]==q[3]:u=(q[1]-p[1])**2+(q[2]-p[2])**2
		else:
			s=4*p[0]*q[0]
			r=int(math.sqrt(s))+1
			while s<r*r:r-=1
			u=p[0]-r+q[0]
		D[i][j]=u
M=3200000001
W=[M]*N
W[0]=0
Q={i for i in R(N)}
while len(Q):
	e,w=N,M
	for q in Q:
		if w>W[q]:e,w=q,W[q]
	Q.remove(e)
	for q in Q:W[q]=min(W[q],max(w,D[e][q]))
print(W[N-1])
0