結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 846 ms
61,440 KB
testcase_03 AC 1,516 ms
108,544 KB
testcase_04 AC 1,476 ms
107,648 KB
testcase_05 AC 1,112 ms
100,480 KB
testcase_06 AC 1,133 ms
100,352 KB
testcase_07 AC 290 ms
37,632 KB
testcase_08 AC 998 ms
112,512 KB
testcase_09 AC 112 ms
19,584 KB
testcase_10 AC 456 ms
55,936 KB
testcase_11 AC 324 ms
41,856 KB
testcase_12 AC 602 ms
41,472 KB
testcase_13 AC 1,391 ms
76,032 KB
testcase_14 AC 1,452 ms
83,456 KB
testcase_15 AC 1,656 ms
93,952 KB
testcase_16 AC 995 ms
57,600 KB
testcase_17 AC 1,868 ms
99,584 KB
testcase_18 AC 761 ms
47,104 KB
testcase_19 AC 1,555 ms
93,056 KB
testcase_20 AC 425 ms
34,688 KB
testcase_21 AC 1,018 ms
56,704 KB
testcase_22 AC 1,619 ms
88,448 KB
testcase_23 AC 49 ms
12,160 KB
testcase_24 AC 54 ms
12,160 KB
testcase_25 AC 530 ms
38,016 KB
testcase_26 AC 915 ms
58,176 KB
testcase_27 AC 1,033 ms
61,056 KB
testcase_28 AC 1,729 ms
93,532 KB
testcase_29 AC 279 ms
24,832 KB
testcase_30 AC 1,635 ms
94,592 KB
testcase_31 AC 1,026 ms
67,688 KB
testcase_32 AC 702 ms
50,176 KB
testcase_33 AC 1,516 ms
92,288 KB
testcase_34 AC 727 ms
46,464 KB
testcase_35 AC 1,801 ms
95,488 KB
testcase_36 AC 39 ms
11,392 KB
testcase_37 AC 45 ms
12,032 KB
testcase_38 AC 42 ms
11,648 KB
testcase_39 AC 44 ms
11,904 KB
testcase_40 AC 36 ms
11,136 KB
testcase_41 AC 1,694 ms
112,000 KB
testcase_42 AC 511 ms
42,112 KB
testcase_43 AC 887 ms
64,512 KB
testcase_44 AC 312 ms
30,464 KB
testcase_45 AC 863 ms
63,232 KB
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

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)]
    # W = [False for _ in range(N)]
    # V[X] = 0
    # W[X] = True

    while h:
        d, v = heappop(h)
        if V[v] == -1:
            V[v] = d
        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