結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー titiatitia
提出日時 2020-05-29 21:48:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 949 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 146,288 KB
最終ジャッジ日時 2024-11-06 03:46:06
合計ジャッジ時間 21,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,276 KB
testcase_01 AC 39 ms
53,596 KB
testcase_02 AC 538 ms
111,884 KB
testcase_03 AC 704 ms
146,288 KB
testcase_04 AC 655 ms
144,992 KB
testcase_05 AC 475 ms
145,040 KB
testcase_06 AC 507 ms
145,040 KB
testcase_07 AC 139 ms
91,264 KB
testcase_08 AC 350 ms
141,100 KB
testcase_09 AC 98 ms
82,108 KB
testcase_10 AC 200 ms
104,732 KB
testcase_11 AC 155 ms
95,616 KB
testcase_12 AC 122 ms
88,648 KB
testcase_13 AC 698 ms
123,476 KB
testcase_14 AC 721 ms
129,848 KB
testcase_15 AC 912 ms
139,776 KB
testcase_16 AC 441 ms
105,976 KB
testcase_17 AC 896 ms
141,516 KB
testcase_18 AC 309 ms
96,580 KB
testcase_19 AC 865 ms
139,860 KB
testcase_20 AC 273 ms
92,776 KB
testcase_21 AC 355 ms
101,672 KB
testcase_22 AC 781 ms
133,660 KB
testcase_23 AC 56 ms
67,636 KB
testcase_24 AC 61 ms
70,008 KB
testcase_25 AC 122 ms
88,736 KB
testcase_26 AC 526 ms
112,164 KB
testcase_27 AC 460 ms
110,272 KB
testcase_28 AC 768 ms
132,020 KB
testcase_29 AC 158 ms
83,944 KB
testcase_30 AC 769 ms
138,656 KB
testcase_31 AC 568 ms
120,304 KB
testcase_32 AC 386 ms
105,100 KB
testcase_33 AC 809 ms
139,792 KB
testcase_34 AC 328 ms
98,544 KB
testcase_35 AC 949 ms
143,264 KB
testcase_36 AC 70 ms
71,956 KB
testcase_37 AC 97 ms
77,396 KB
testcase_38 AC 87 ms
77,332 KB
testcase_39 AC 99 ms
77,356 KB
testcase_40 AC 54 ms
65,460 KB
testcase_41 AC 939 ms
143,432 KB
testcase_42 AC 310 ms
97,164 KB
testcase_43 AC 508 ms
111,976 KB
testcase_44 AC 232 ms
90,036 KB
testcase_45 AC 493 ms
110,260 KB
testcase_46 AC 39 ms
52,996 KB
testcase_47 AC 39 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
X,Y=map(int,input().split())
L=[tuple(map(int,input().split())) for i in range(N)]
E=[[] for i in range(N+1)]

from math import sqrt

for i in range(M):
    p,q=map(int,input().split())
    p-=1
    q-=1
    x0,y0=L[p]
    x1,y1=L[q]
    E[p].append((sqrt((x0-x1)**2+(y0-y1)**2),q))
    E[q].append((sqrt((x0-x1)**2+(y0-y1)**2),p))

import heapq
DP=[1<<62]*(N+1)
DP[X-1]=0

Q=[(0,X-1)]

while Q:
    now,x=heapq.heappop(Q)

    for le,to in E[x]:
        if DP[to]>DP[x]+le:
            DP[to]=DP[x]+le
            heapq.heappush(Q,(DP[to]+le,to))
print(DP[Y-1])
    
    
    
    
0