結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー H3PO4H3PO4
提出日時 2020-09-23 22:32:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 647 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 90,940 KB
最終ジャッジ日時 2024-06-28 04:38:47
合計ジャッジ時間 71,420 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 931 ms
56,144 KB
testcase_01 AC 928 ms
56,644 KB
testcase_02 AC 1,544 ms
72,280 KB
testcase_03 AC 1,815 ms
88,648 KB
testcase_04 AC 1,826 ms
89,800 KB
testcase_05 AC 1,699 ms
88,880 KB
testcase_06 AC 1,707 ms
88,500 KB
testcase_07 AC 1,181 ms
63,436 KB
testcase_08 AC 1,866 ms
90,608 KB
testcase_09 AC 1,015 ms
58,284 KB
testcase_10 AC 1,344 ms
70,672 KB
testcase_11 AC 1,214 ms
65,896 KB
testcase_12 AC 1,179 ms
67,648 KB
testcase_13 AC 1,549 ms
77,580 KB
testcase_14 AC 1,634 ms
78,156 KB
testcase_15 AC 1,749 ms
81,296 KB
testcase_16 AC 1,350 ms
72,288 KB
testcase_17 AC 1,829 ms
84,140 KB
testcase_18 AC 1,252 ms
67,520 KB
testcase_19 AC 1,791 ms
81,224 KB
testcase_20 AC 1,186 ms
62,404 KB
testcase_21 AC 1,315 ms
71,744 KB
testcase_22 AC 1,696 ms
80,636 KB
testcase_23 AC 947 ms
56,524 KB
testcase_24 AC 961 ms
56,656 KB
testcase_25 AC 1,159 ms
66,368 KB
testcase_26 AC 1,403 ms
69,996 KB
testcase_27 AC 1,415 ms
72,632 KB
testcase_28 AC 1,732 ms
84,840 KB
testcase_29 AC 1,064 ms
60,104 KB
testcase_30 AC 1,844 ms
82,136 KB
testcase_31 AC 1,518 ms
71,908 KB
testcase_32 AC 1,312 ms
66,572 KB
testcase_33 AC 1,732 ms
78,784 KB
testcase_34 AC 1,264 ms
66,864 KB
testcase_35 AC 1,792 ms
82,836 KB
testcase_36 AC 948 ms
56,516 KB
testcase_37 AC 955 ms
56,268 KB
testcase_38 AC 950 ms
56,512 KB
testcase_39 AC 947 ms
56,264 KB
testcase_40 AC 936 ms
56,528 KB
testcase_41 TLE -
testcase_42 AC 1,256 ms
66,228 KB
testcase_43 AC 1,508 ms
73,280 KB
testcase_44 AC 1,157 ms
61,936 KB
testcase_45 AC 1,517 ms
73,324 KB
testcase_46 AC 942 ms
56,384 KB
testcase_47 AC 953 ms
56,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np
from scipy.linalg import norm
from scipy.sparse.csgraph import dijkstra
from scipy.sparse import csr_matrix

input = sys.stdin.buffer.readline

int1 = lambda x: int(x) - 1


def main():
    N, M = map(int, input().split())
    X, Y = map(int1, input().split())
    pole = np.array([tuple(map(int, input().split())) for _ in range(N)])
    wire = np.array([tuple(map(int1, input().split())) for _ in range(M)]).T
    length = norm(pole[wire[0]] - pole[wire[1]], axis=1)
    matr = csr_matrix((length, wire), shape=(N, N))
    print(dijkstra(matr, indices=X, directed=False)[Y])


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