結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー kohei2019kohei2019
提出日時 2022-07-18 00:25:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 138,640 KB
最終ジャッジ日時 2024-06-30 01:01:06
合計ジャッジ時間 25,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 41 ms
52,992 KB
testcase_02 AC 555 ms
106,200 KB
testcase_03 AC 733 ms
138,640 KB
testcase_04 AC 716 ms
137,352 KB
testcase_05 AC 522 ms
134,512 KB
testcase_06 AC 525 ms
134,896 KB
testcase_07 AC 191 ms
88,576 KB
testcase_08 AC 437 ms
133,292 KB
testcase_09 AC 139 ms
79,744 KB
testcase_10 AC 257 ms
100,764 KB
testcase_11 AC 215 ms
93,568 KB
testcase_12 AC 193 ms
87,424 KB
testcase_13 AC 698 ms
116,672 KB
testcase_14 AC 773 ms
122,396 KB
testcase_15 AC 885 ms
130,084 KB
testcase_16 AC 515 ms
102,972 KB
testcase_17 AC 936 ms
135,144 KB
testcase_18 AC 415 ms
95,872 KB
testcase_19 AC 860 ms
132,520 KB
testcase_20 AC 317 ms
91,448 KB
testcase_21 AC 417 ms
99,416 KB
testcase_22 AC 825 ms
126,416 KB
testcase_23 AC 86 ms
74,880 KB
testcase_24 AC 95 ms
77,568 KB
testcase_25 AC 177 ms
87,296 KB
testcase_26 AC 505 ms
106,732 KB
testcase_27 AC 565 ms
106,748 KB
testcase_28 AC 848 ms
127,476 KB
testcase_29 AC 207 ms
83,712 KB
testcase_30 AC 866 ms
131,688 KB
testcase_31 AC 606 ms
115,480 KB
testcase_32 AC 463 ms
101,032 KB
testcase_33 AC 954 ms
132,244 KB
testcase_34 AC 410 ms
96,512 KB
testcase_35 AC 882 ms
132,596 KB
testcase_36 AC 123 ms
77,056 KB
testcase_37 AC 144 ms
78,464 KB
testcase_38 AC 108 ms
77,312 KB
testcase_39 AC 138 ms
78,080 KB
testcase_40 AC 70 ms
66,176 KB
testcase_41 AC 952 ms
134,312 KB
testcase_42 AC 366 ms
95,104 KB
testcase_43 AC 570 ms
106,536 KB
testcase_44 AC 272 ms
87,936 KB
testcase_45 AC 554 ms
105,640 KB
testcase_46 AC 41 ms
52,480 KB
testcase_47 AC 42 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int,input().split())
X,Y = map(int,input().split())
X,Y = X-1,Y-1
lsP = []
for i in range(N):
    p,q = map(int,input().split())
    lsP.append((p,q))
lsG = [[] for i in range(N)]
for i in range(M):
    P,Q = map(int,input().split())
    P -= 1
    Q -= 1
    dist = ((lsP[P][0]-lsP[Q][0])**2+(lsP[P][1]-lsP[Q][1])**2)**(1/2)
    lsG[P].append((Q,dist))
    lsG[Q].append((P,dist))

used = [False]*(N)
inf = float('INF')
lscost = [inf]*(N)
lscost[X] = 0
h = [(0,X)]
while h:
    c,n = heapq.heappop(h)
    if used[n]:
        continue
    used[n] = True
    for j,cost in lsG[n]:
        if used[j]:
            continue
        if lscost[j] > lscost[n] + cost:
            lscost[j] = lscost[n] + cost
            heapq.heappush(h, (lscost[j],j))
print(lscost[Y])
0