結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-09-05 17:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,114 ms / 2,000 ms
コード長 1,308 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 142,820 KB
最終ジャッジ日時 2024-11-20 18:46:05
合計ジャッジ時間 27,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,760 KB
testcase_01 AC 51 ms
61,596 KB
testcase_02 AC 651 ms
110,668 KB
testcase_03 AC 780 ms
142,820 KB
testcase_04 AC 781 ms
141,560 KB
testcase_05 AC 601 ms
140,652 KB
testcase_06 AC 607 ms
140,284 KB
testcase_07 AC 215 ms
93,980 KB
testcase_08 AC 511 ms
140,960 KB
testcase_09 AC 148 ms
83,304 KB
testcase_10 AC 296 ms
106,324 KB
testcase_11 AC 238 ms
96,520 KB
testcase_12 AC 185 ms
87,920 KB
testcase_13 AC 751 ms
119,296 KB
testcase_14 AC 850 ms
126,248 KB
testcase_15 AC 968 ms
135,224 KB
testcase_16 AC 537 ms
105,080 KB
testcase_17 AC 1,052 ms
140,028 KB
testcase_18 AC 426 ms
97,180 KB
testcase_19 AC 981 ms
136,452 KB
testcase_20 AC 353 ms
93,728 KB
testcase_21 AC 441 ms
101,760 KB
testcase_22 AC 913 ms
130,516 KB
testcase_23 AC 90 ms
77,652 KB
testcase_24 AC 95 ms
78,448 KB
testcase_25 AC 182 ms
88,180 KB
testcase_26 AC 561 ms
108,632 KB
testcase_27 AC 604 ms
109,132 KB
testcase_28 AC 943 ms
129,920 KB
testcase_29 AC 221 ms
84,676 KB
testcase_30 AC 979 ms
134,720 KB
testcase_31 AC 677 ms
118,784 KB
testcase_32 AC 506 ms
104,568 KB
testcase_33 AC 1,055 ms
135,984 KB
testcase_34 AC 446 ms
98,292 KB
testcase_35 AC 956 ms
136,408 KB
testcase_36 AC 101 ms
78,572 KB
testcase_37 AC 147 ms
78,732 KB
testcase_38 AC 108 ms
78,376 KB
testcase_39 AC 145 ms
78,904 KB
testcase_40 AC 71 ms
69,924 KB
testcase_41 AC 1,114 ms
141,876 KB
testcase_42 AC 406 ms
97,604 KB
testcase_43 AC 633 ms
112,232 KB
testcase_44 AC 299 ms
90,244 KB
testcase_45 AC 610 ms
111,296 KB
testcase_46 AC 51 ms
62,480 KB
testcase_47 AC 51 ms
62,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I():return int(input())
def MAP():return map(int,input().split())
def MAPs():return map(str,input().split())
def LI(): return list(map(int,input().split()))
def TPL(): return tuple(map(int,input().split()))
def S():return input()
from collections import defaultdict,Counter,deque
from copy import deepcopy
from heapq import heapify,heappop,heappush
from bisect import bisect_left,bisect_right
from itertools import accumulate,product,permutations,combinations
from math import gcd,ceil,floor,sqrt
inf=float('inf')

n,m=MAP()
start,goal=MAP()
point=[TPL() for _ in range(n)]
g=[[] for _ in range(n)]
for _ in range(m):
    p,q=MAP()
    x,y=point[p-1];X,Y=point[q-1]
    d=(x-X)**2+(y-Y)**2
    d=sqrt(d)
    g[p-1].append((q-1,d))
    g[q-1].append((p-1,d))
def dijkstra(start):
    dst=[10**18]*n
    visit=[False]*n
    q=[]
    heappush(q,(0,start))
    while q:
        now_cost,now_place=heappop(q)
        if visit[now_place]:
            continue
        visit[now_place]=True
        dst[now_place]=now_cost
        for to_place,cost in g[now_place]:
            if visit[to_place]:
                continue
            if dst[to_place]>now_cost+cost:
                dst[to_place]=now_cost+cost
                heappush(q,(dst[to_place],to_place))
    return dst
print(dijkstra(start-1)[goal-1])
0