結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー pluto77pluto77
提出日時 2020-06-19 13:12:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,227 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 161,100 KB
最終ジャッジ日時 2024-07-03 13:18:22
合計ジャッジ時間 28,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,132 KB
testcase_01 AC 37 ms
53,484 KB
testcase_02 AC 699 ms
119,568 KB
testcase_03 AC 968 ms
161,100 KB
testcase_04 AC 952 ms
160,540 KB
testcase_05 AC 748 ms
160,556 KB
testcase_06 AC 749 ms
160,436 KB
testcase_07 AC 194 ms
97,660 KB
testcase_08 AC 464 ms
154,700 KB
testcase_09 AC 130 ms
84,580 KB
testcase_10 AC 255 ms
112,096 KB
testcase_11 AC 215 ms
100,372 KB
testcase_12 AC 176 ms
95,488 KB
testcase_13 AC 827 ms
134,112 KB
testcase_14 AC 950 ms
141,536 KB
testcase_15 AC 1,141 ms
152,524 KB
testcase_16 AC 574 ms
114,884 KB
testcase_17 AC 1,189 ms
158,476 KB
testcase_18 AC 407 ms
104,092 KB
testcase_19 AC 1,099 ms
155,192 KB
testcase_20 AC 344 ms
98,288 KB
testcase_21 AC 453 ms
111,120 KB
testcase_22 AC 1,045 ms
147,444 KB
testcase_23 AC 67 ms
74,716 KB
testcase_24 AC 78 ms
77,996 KB
testcase_25 AC 155 ms
91,792 KB
testcase_26 AC 589 ms
118,216 KB
testcase_27 AC 669 ms
119,760 KB
testcase_28 AC 1,069 ms
149,092 KB
testcase_29 AC 200 ms
86,992 KB
testcase_30 AC 1,093 ms
152,188 KB
testcase_31 AC 757 ms
130,792 KB
testcase_32 AC 540 ms
112,252 KB
testcase_33 AC 1,227 ms
152,372 KB
testcase_34 AC 444 ms
105,016 KB
testcase_35 AC 1,073 ms
153,332 KB
testcase_36 AC 81 ms
77,408 KB
testcase_37 AC 127 ms
78,724 KB
testcase_38 AC 91 ms
77,732 KB
testcase_39 AC 126 ms
79,044 KB
testcase_40 AC 59 ms
66,892 KB
testcase_41 AC 1,207 ms
155,408 KB
testcase_42 AC 415 ms
101,820 KB
testcase_43 AC 649 ms
118,944 KB
testcase_44 AC 290 ms
93,192 KB
testcase_45 AC 631 ms
118,096 KB
testcase_46 AC 36 ms
53,680 KB
testcase_47 AC 36 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1065
from heapq import heappop,heappush

def dijkstra(s,n,edge):
 dist=[float("inf")]*n
 dist[s]=0
 used=[-1]*n
 hq=[[dist[s],s]]
 while hq:
  d,cur=heappop(hq)
  if dist[cur]<d:
   continue
  for nx,nxd in edge[cur]:
   if dist[cur]+nxd<dist[nx]:
    dist[nx]=dist[cur]+nxd
    used[nx]=cur
    heappush(hq,[dist[cur]+nxd,nx])
 return dist
  
n,m=map(int,input().split())
x,y=map(int,input().split())
pq=[list(map(int,input().split())) for i in range(n)]
G=[[] for i in range(n)]
for i in range(m):
 p,q=map(int,input().split())
 p-=1
 q-=1
 c=((pq[q][0]-pq[p][0])**2+(pq[q][1]-pq[p][1])**2)**0.5
 G[p].append([q,c])
 G[q].append([p,c])
d=dijkstra(x-1,n,G)
print(d[y-1])
0