結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ntudantuda
提出日時 2024-11-14 21:03:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,120 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,728 KB
最終ジャッジ日時 2024-11-14 21:03:37
合計ジャッジ時間 28,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 42 ms
53,248 KB
testcase_02 AC 671 ms
110,896 KB
testcase_03 AC 785 ms
140,788 KB
testcase_04 AC 812 ms
139,768 KB
testcase_05 AC 570 ms
138,252 KB
testcase_06 AC 564 ms
137,992 KB
testcase_07 AC 220 ms
94,544 KB
testcase_08 AC 522 ms
140,544 KB
testcase_09 AC 144 ms
80,384 KB
testcase_10 AC 286 ms
104,960 KB
testcase_11 AC 225 ms
93,696 KB
testcase_12 AC 190 ms
87,424 KB
testcase_13 AC 853 ms
120,996 KB
testcase_14 AC 898 ms
125,312 KB
testcase_15 AC 982 ms
134,332 KB
testcase_16 AC 536 ms
104,576 KB
testcase_17 AC 1,071 ms
139,080 KB
testcase_18 AC 420 ms
96,396 KB
testcase_19 AC 1,112 ms
136,328 KB
testcase_20 AC 333 ms
93,332 KB
testcase_21 AC 487 ms
101,368 KB
testcase_22 AC 949 ms
129,796 KB
testcase_23 AC 73 ms
74,496 KB
testcase_24 AC 84 ms
77,568 KB
testcase_25 AC 166 ms
87,168 KB
testcase_26 AC 548 ms
108,800 KB
testcase_27 AC 633 ms
109,052 KB
testcase_28 AC 954 ms
130,024 KB
testcase_29 AC 239 ms
83,880 KB
testcase_30 AC 927 ms
134,808 KB
testcase_31 AC 671 ms
118,516 KB
testcase_32 AC 485 ms
104,208 KB
testcase_33 AC 1,067 ms
135,936 KB
testcase_34 AC 449 ms
97,640 KB
testcase_35 AC 971 ms
136,236 KB
testcase_36 AC 88 ms
77,264 KB
testcase_37 AC 134 ms
78,288 KB
testcase_38 AC 96 ms
77,348 KB
testcase_39 AC 130 ms
78,192 KB
testcase_40 AC 62 ms
65,920 KB
testcase_41 AC 1,120 ms
142,728 KB
testcase_42 AC 399 ms
97,804 KB
testcase_43 AC 641 ms
112,292 KB
testcase_44 AC 291 ms
90,700 KB
testcase_45 AC 620 ms
111,340 KB
testcase_46 AC 40 ms
53,748 KB
testcase_47 AC 40 ms
54,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N,M = map(int,input().split())
X,Y = map(int,input().split())
P = [list(map(int,input().split())) for _ in range(N)]
E = [[] for _ in range(N)]
for i in range(M):
    u,v = map(int,input().split())
    u -= 1
    v -= 1
    d = ((P[u][0] - P[v][0]) ** 2 + (P[u][1] - P[v][1]) ** 2) ** 0.5
    E[u].append((v,d))
    E[v].append((u,d))
INF = 10 ** 10

def dijkstra(x,y):
    D = [INF] * N
    D[x] = 0
    q = [(0,x)]
    while q:
        d, u = heappop(q)
        if d > D[u]: continue
        for a,b in E[u]:
            if D[a] > D[u] + b:
                D[a] = D[u] + b
                heappush(q, (D[a], a))
    return D[y]

print(dijkstra(X-1,Y-1))
0