結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 23:36:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 143,500 KB
最終ジャッジ日時 2024-09-19 23:37:02
合計ジャッジ時間 23,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,784 KB
testcase_01 AC 41 ms
53,268 KB
testcase_02 AC 560 ms
109,348 KB
testcase_03 AC 745 ms
143,500 KB
testcase_04 AC 709 ms
142,732 KB
testcase_05 AC 511 ms
139,656 KB
testcase_06 AC 525 ms
139,680 KB
testcase_07 AC 199 ms
93,856 KB
testcase_08 AC 473 ms
138,940 KB
testcase_09 AC 124 ms
79,484 KB
testcase_10 AC 254 ms
102,332 KB
testcase_11 AC 212 ms
95,836 KB
testcase_12 AC 167 ms
86,804 KB
testcase_13 AC 692 ms
120,240 KB
testcase_14 AC 764 ms
125,196 KB
testcase_15 AC 889 ms
133,548 KB
testcase_16 AC 454 ms
104,372 KB
testcase_17 AC 951 ms
138,196 KB
testcase_18 AC 361 ms
96,540 KB
testcase_19 AC 875 ms
133,924 KB
testcase_20 AC 300 ms
92,684 KB
testcase_21 AC 391 ms
101,036 KB
testcase_22 AC 819 ms
130,232 KB
testcase_23 AC 69 ms
74,400 KB
testcase_24 AC 80 ms
77,524 KB
testcase_25 AC 154 ms
86,572 KB
testcase_26 AC 485 ms
108,680 KB
testcase_27 AC 529 ms
109,624 KB
testcase_28 AC 880 ms
131,856 KB
testcase_29 AC 197 ms
83,824 KB
testcase_30 AC 847 ms
134,468 KB
testcase_31 AC 604 ms
117,268 KB
testcase_32 AC 433 ms
103,660 KB
testcase_33 AC 938 ms
135,100 KB
testcase_34 AC 386 ms
98,444 KB
testcase_35 AC 875 ms
136,308 KB
testcase_36 AC 82 ms
76,916 KB
testcase_37 AC 125 ms
77,728 KB
testcase_38 AC 93 ms
77,124 KB
testcase_39 AC 119 ms
77,632 KB
testcase_40 AC 56 ms
66,948 KB
testcase_41 AC 1,017 ms
140,424 KB
testcase_42 AC 362 ms
96,884 KB
testcase_43 AC 538 ms
110,492 KB
testcase_44 AC 256 ms
89,136 KB
testcase_45 AC 554 ms
109,904 KB
testcase_46 AC 36 ms
52,976 KB
testcase_47 AC 36 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
S,G=map(int,input().split())
S-=1
G-=1
p=[tuple(map(int,input().split())) for i in range(n)]
e=[[] for i in range(n)]
for i in range(m):
	s,g=map(int,input().split())
	s-=1
	g-=1
	sx,sy=p[s]
	gx,gy=p[g]
	d=((sx-gx)**2+(sy-gy)**2)**0.5
	e[s]+=[(g,d)]
	e[g]+=[(s,d)]
from heapq import heappush,heappop
X=10**20
v=[X]*n
v[S]=0
q=[(v[S],S)]
while len(q)>0:
  sc,sp=heappop(q)
  if sc>v[sp]:
    continue
  for tp,tc in e[sp]:
    if v[tp]>sc+tc:
      v[tp]=sc+tc
      heappush(q,(v[tp],tp))
print(v[G])
0