結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー pluto77pluto77
提出日時 2020-06-19 13:14:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,288 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 159,224 KB
最終ジャッジ日時 2024-07-03 13:19:01
合計ジャッジ時間 28,429 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,724 KB
testcase_01 AC 38 ms
54,868 KB
testcase_02 AC 712 ms
117,568 KB
testcase_03 AC 1,011 ms
159,224 KB
testcase_04 AC 1,000 ms
158,248 KB
testcase_05 AC 800 ms
158,560 KB
testcase_06 AC 794 ms
158,764 KB
testcase_07 AC 205 ms
96,800 KB
testcase_08 AC 489 ms
151,720 KB
testcase_09 AC 137 ms
83,656 KB
testcase_10 AC 274 ms
110,008 KB
testcase_11 AC 215 ms
99,752 KB
testcase_12 AC 185 ms
95,720 KB
testcase_13 AC 857 ms
133,272 KB
testcase_14 AC 960 ms
139,408 KB
testcase_15 AC 1,158 ms
150,128 KB
testcase_16 AC 603 ms
114,036 KB
testcase_17 AC 1,250 ms
156,544 KB
testcase_18 AC 441 ms
103,832 KB
testcase_19 AC 1,130 ms
152,800 KB
testcase_20 AC 365 ms
97,672 KB
testcase_21 AC 476 ms
110,644 KB
testcase_22 AC 1,091 ms
145,548 KB
testcase_23 AC 72 ms
74,468 KB
testcase_24 AC 90 ms
78,084 KB
testcase_25 AC 168 ms
91,276 KB
testcase_26 AC 618 ms
117,860 KB
testcase_27 AC 659 ms
119,324 KB
testcase_28 AC 1,118 ms
146,548 KB
testcase_29 AC 217 ms
86,676 KB
testcase_30 AC 1,137 ms
149,872 KB
testcase_31 AC 798 ms
129,428 KB
testcase_32 AC 550 ms
110,352 KB
testcase_33 AC 1,288 ms
150,332 KB
testcase_34 AC 467 ms
104,828 KB
testcase_35 AC 1,144 ms
152,704 KB
testcase_36 AC 87 ms
76,952 KB
testcase_37 AC 132 ms
78,748 KB
testcase_38 AC 97 ms
77,832 KB
testcase_39 AC 130 ms
78,744 KB
testcase_40 AC 60 ms
66,292 KB
testcase_41 AC 1,215 ms
152,188 KB
testcase_42 AC 431 ms
100,368 KB
testcase_43 AC 676 ms
116,984 KB
testcase_44 AC 310 ms
92,240 KB
testcase_45 AC 656 ms
116,132 KB
testcase_46 AC 37 ms
53,400 KB
testcase_47 AC 38 ms
54,076 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=[tuple(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