結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー H3PO4H3PO4
提出日時 2020-05-29 23:27:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 682 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 121,816 KB
最終ジャッジ日時 2024-11-06 08:18:41
合計ジャッジ時間 73,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 933 ms
53,628 KB
testcase_01 AC 932 ms
53,888 KB
testcase_02 AC 1,548 ms
86,088 KB
testcase_03 AC 1,877 ms
106,840 KB
testcase_04 AC 1,891 ms
106,744 KB
testcase_05 AC 1,729 ms
99,412 KB
testcase_06 AC 1,677 ms
99,372 KB
testcase_07 AC 1,187 ms
71,024 KB
testcase_08 AC 1,877 ms
121,816 KB
testcase_09 AC 1,005 ms
58,084 KB
testcase_10 AC 1,349 ms
83,524 KB
testcase_11 AC 1,227 ms
73,196 KB
testcase_12 AC 1,210 ms
64,076 KB
testcase_13 AC 1,726 ms
84,652 KB
testcase_14 AC 1,716 ms
90,912 KB
testcase_15 AC 1,839 ms
96,544 KB
testcase_16 AC 1,481 ms
73,284 KB
testcase_17 TLE -
testcase_18 AC 1,345 ms
67,560 KB
testcase_19 AC 1,871 ms
99,320 KB
testcase_20 AC 1,196 ms
66,152 KB
testcase_21 AC 1,411 ms
70,840 KB
testcase_22 AC 1,814 ms
94,376 KB
testcase_23 AC 959 ms
53,604 KB
testcase_24 AC 973 ms
53,736 KB
testcase_25 AC 1,205 ms
62,912 KB
testcase_26 AC 1,471 ms
78,472 KB
testcase_27 AC 1,470 ms
77,796 KB
testcase_28 AC 1,815 ms
93,440 KB
testcase_29 AC 1,110 ms
58,092 KB
testcase_30 AC 1,845 ms
97,832 KB
testcase_31 AC 1,728 ms
85,424 KB
testcase_32 AC 1,362 ms
73,948 KB
testcase_33 AC 1,806 ms
95,696 KB
testcase_34 AC 1,296 ms
68,984 KB
testcase_35 AC 1,891 ms
98,340 KB
testcase_36 AC 932 ms
53,876 KB
testcase_37 AC 938 ms
54,068 KB
testcase_38 AC 954 ms
54,008 KB
testcase_39 AC 944 ms
54,056 KB
testcase_40 AC 946 ms
53,892 KB
testcase_41 TLE -
testcase_42 AC 1,292 ms
73,960 KB
testcase_43 AC 1,547 ms
89,196 KB
testcase_44 AC 1,158 ms
65,768 KB
testcase_45 AC 1,555 ms
88,252 KB
testcase_46 AC 943 ms
53,616 KB
testcase_47 AC 937 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.sparse.csgraph import dijkstra
from scipy.sparse import csr_matrix
import sys

input = sys.stdin.readline

int1 = lambda x: int(x) - 1


def main():
    N, M = map(int, input().split())
    X, Y = map(int1, input().split())

    P = [tuple(map(int, input().split())) for _ in range(N)]
    length, frm, to = [.0] * M, [0] * M, [0] * M
    for i in range(M):
        p, q = map(int1, input().split())
        length[i] = ((P[p][0] - P[q][0]) ** 2 + (P[p][1] - P[q][1]) ** 2) ** .5
        frm[i] = p
        to[i] = q

    matr = csr_matrix((length, (frm, to)), shape=(N, N))
    print(dijkstra(matr, indices=X, directed=False)[Y])


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