結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tcltktcltk
提出日時 2021-01-31 04:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 930 ms / 2,000 ms
コード長 1,306 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 146,688 KB
最終ジャッジ日時 2024-06-28 15:05:01
合計ジャッジ時間 26,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
86,656 KB
testcase_01 AC 136 ms
86,784 KB
testcase_02 AC 562 ms
116,992 KB
testcase_03 AC 714 ms
146,688 KB
testcase_04 AC 690 ms
145,664 KB
testcase_05 AC 516 ms
143,872 KB
testcase_06 AC 524 ms
143,744 KB
testcase_07 AC 235 ms
102,400 KB
testcase_08 AC 407 ms
141,832 KB
testcase_09 AC 190 ms
91,648 KB
testcase_10 AC 278 ms
111,232 KB
testcase_11 AC 235 ms
101,504 KB
testcase_12 AC 224 ms
99,968 KB
testcase_13 AC 672 ms
125,184 KB
testcase_14 AC 736 ms
131,072 KB
testcase_15 AC 837 ms
139,776 KB
testcase_16 AC 503 ms
113,920 KB
testcase_17 AC 907 ms
142,208 KB
testcase_18 AC 414 ms
106,240 KB
testcase_19 AC 858 ms
138,624 KB
testcase_20 AC 365 ms
102,400 KB
testcase_21 AC 465 ms
110,848 KB
testcase_22 AC 831 ms
134,912 KB
testcase_23 AC 160 ms
89,472 KB
testcase_24 AC 161 ms
89,728 KB
testcase_25 AC 212 ms
95,872 KB
testcase_26 AC 523 ms
115,712 KB
testcase_27 AC 569 ms
116,608 KB
testcase_28 AC 866 ms
134,528 KB
testcase_29 AC 278 ms
95,360 KB
testcase_30 AC 847 ms
137,728 KB
testcase_31 AC 624 ms
124,032 KB
testcase_32 AC 517 ms
111,872 KB
testcase_33 AC 914 ms
138,880 KB
testcase_34 AC 442 ms
107,264 KB
testcase_35 AC 831 ms
140,032 KB
testcase_36 AC 167 ms
89,344 KB
testcase_37 AC 196 ms
90,368 KB
testcase_38 AC 170 ms
89,088 KB
testcase_39 AC 191 ms
90,112 KB
testcase_40 AC 150 ms
88,704 KB
testcase_41 AC 930 ms
143,756 KB
testcase_42 AC 392 ms
105,856 KB
testcase_43 AC 554 ms
117,760 KB
testcase_44 AC 317 ms
99,456 KB
testcase_45 AC 538 ms
116,608 KB
testcase_46 AC 135 ms
86,528 KB
testcase_47 AC 137 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)



def main():
    N, M = map(int, input().split())
    X, Y = map(lambda x: int(x)-1, input().split())
    G = [list() for _ in range(N)]
    P = []
    for _ in range(N):
        _x, _y = map(int, input().split())
        P.append((_x, _y))
    for _ in range(M):
        _p, _q = map(lambda x: int(x)-1, input().split())
        d = math.sqrt((P[_p][0] - P[_q][0]) ** 2 + (P[_p][1] - P[_q][1]) ** 2)
        G[_p].append((_q, d))
        G[_q].append((_p, d))

    # K を始点とする
    dist = [10**20 for _ in range(N)]
    hq = []
    heapq.heappush(hq, (0, X))
    dist[X] = 0
    while hq:
        d, p = heapq.heappop(hq)
        if d > dist[p]:
            continue
        for (p1, w1) in G[p]:
            d1 = dist[p] + w1
            if d1 < dist[p1]:
                dist[p1] = d1
                heapq.heappush(hq, (dist[p1], p1))

    print(dist[Y])

if __name__ == '__main__':
    main()
0