結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 805 ms
61,312 KB
testcase_03 AC 1,446 ms
108,544 KB
testcase_04 AC 1,401 ms
107,776 KB
testcase_05 AC 1,098 ms
100,352 KB
testcase_06 AC 1,098 ms
100,352 KB
testcase_07 AC 281 ms
37,888 KB
testcase_08 AC 981 ms
112,512 KB
testcase_09 AC 111 ms
19,456 KB
testcase_10 AC 451 ms
55,936 KB
testcase_11 AC 320 ms
41,728 KB
testcase_12 AC 554 ms
41,600 KB
testcase_13 AC 1,267 ms
76,288 KB
testcase_14 AC 1,359 ms
83,200 KB
testcase_15 AC 1,597 ms
93,696 KB
testcase_16 AC 940 ms
57,728 KB
testcase_17 AC 1,742 ms
99,584 KB
testcase_18 AC 677 ms
47,360 KB
testcase_19 AC 1,493 ms
92,800 KB
testcase_20 AC 408 ms
34,688 KB
testcase_21 AC 937 ms
56,832 KB
testcase_22 AC 1,483 ms
88,704 KB
testcase_23 AC 48 ms
12,032 KB
testcase_24 AC 52 ms
12,416 KB
testcase_25 AC 492 ms
38,016 KB
testcase_26 AC 839 ms
58,368 KB
testcase_27 AC 1,060 ms
61,056 KB
testcase_28 AC 1,658 ms
93,436 KB
testcase_29 AC 272 ms
25,088 KB
testcase_30 AC 1,544 ms
94,336 KB
testcase_31 AC 984 ms
67,932 KB
testcase_32 AC 651 ms
50,304 KB
testcase_33 AC 1,452 ms
92,416 KB
testcase_34 AC 700 ms
46,336 KB
testcase_35 AC 1,608 ms
95,484 KB
testcase_36 AC 39 ms
11,392 KB
testcase_37 AC 41 ms
11,904 KB
testcase_38 AC 39 ms
11,648 KB
testcase_39 AC 41 ms
11,904 KB
testcase_40 AC 34 ms
11,136 KB
testcase_41 AC 1,631 ms
112,000 KB
testcase_42 AC 474 ms
41,984 KB
testcase_43 AC 831 ms
64,512 KB
testcase_44 AC 289 ms
30,336 KB
testcase_45 AC 849 ms
62,976 KB
testcase_46 AC 30 ms
10,880 KB
testcase_47 AC 29 ms
11,008 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)]
    # 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