結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー kamojirokamojiro
提出日時 2020-05-29 22:21:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,482 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-11-06 05:33:01
合計ジャッジ時間 30,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 604 ms
58,880 KB
testcase_03 AC 1,153 ms
108,672 KB
testcase_04 AC 1,313 ms
107,776 KB
testcase_05 AC 1,039 ms
100,224 KB
testcase_06 AC 1,073 ms
100,352 KB
testcase_07 AC 281 ms
37,760 KB
testcase_08 AC 980 ms
112,512 KB
testcase_09 AC 114 ms
19,584 KB
testcase_10 AC 446 ms
55,936 KB
testcase_11 AC 320 ms
41,856 KB
testcase_12 AC 339 ms
37,120 KB
testcase_13 AC 984 ms
75,776 KB
testcase_14 AC 980 ms
83,328 KB
testcase_15 AC 1,248 ms
93,824 KB
testcase_16 AC 646 ms
57,472 KB
testcase_17 AC 1,445 ms
99,840 KB
testcase_18 AC 559 ms
47,232 KB
testcase_19 AC 1,106 ms
92,288 KB
testcase_20 AC 355 ms
34,688 KB
testcase_21 AC 725 ms
57,088 KB
testcase_22 AC 1,174 ms
88,576 KB
testcase_23 AC 44 ms
11,904 KB
testcase_24 AC 46 ms
12,032 KB
testcase_25 AC 306 ms
34,560 KB
testcase_26 AC 575 ms
54,400 KB
testcase_27 AC 640 ms
59,264 KB
testcase_28 AC 1,026 ms
88,664 KB
testcase_29 AC 224 ms
25,088 KB
testcase_30 AC 1,020 ms
91,136 KB
testcase_31 AC 833 ms
67,948 KB
testcase_32 AC 438 ms
46,592 KB
testcase_33 AC 1,167 ms
92,160 KB
testcase_34 AC 514 ms
46,848 KB
testcase_35 AC 968 ms
89,448 KB
testcase_36 AC 37 ms
11,392 KB
testcase_37 AC 39 ms
11,904 KB
testcase_38 AC 38 ms
11,648 KB
testcase_39 AC 38 ms
11,776 KB
testcase_40 AC 34 ms
11,008 KB
testcase_41 AC 1,482 ms
110,720 KB
testcase_42 AC 420 ms
41,216 KB
testcase_43 AC 689 ms
62,336 KB
testcase_44 AC 237 ms
29,440 KB
testcase_45 AC 780 ms
63,104 KB
testcase_46 AC 30 ms
10,880 KB
testcase_47 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import heappop, heappush

def main():
    N, M = map( int, input().split())
    X, Y = map( int, input().split())
    X -= 1
    Y -= 1
    PQ = [ tuple( map( int, input().split())) for _ in range(N)]
    E = [[] for _ in range(N)]
    for _ in range(M):
        p, q = map( lambda x: int(x)-1, input().split())
        E[p].append((q, ((PQ[p][0]-PQ[q][0])**2 + (PQ[p][1]-PQ[q][1])**2)**(1/2)))
        E[q].append((p, ((PQ[p][0]-PQ[q][0])**2 + (PQ[p][1]-PQ[q][1])**2)**(1/2)))
    h = [(0,X)]
    V = [-1 for _ in range(N)]
    while h:
        d, v = heappop(h)
        if V[v] == -1:
            V[v] = d
            if v == Y:
                break
        else:
            continue
        for w, e in E[v]:
            if V[w] == -1:
                heappush(h, (d+e, w))
        # print(h)
    print(V[Y])
if __name__ == '__main__':
    main()
0