結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー H3PO4H3PO4
提出日時 2020-05-29 21:48:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 584 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 122,532 KB
最終ジャッジ日時 2024-11-06 03:44:16
合計ジャッジ時間 77,461 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,020 ms
56,408 KB
testcase_01 AC 933 ms
56,532 KB
testcase_02 AC 1,618 ms
86,672 KB
testcase_03 TLE -
testcase_04 AC 1,992 ms
107,564 KB
testcase_05 AC 1,882 ms
100,496 KB
testcase_06 AC 1,879 ms
100,380 KB
testcase_07 AC 1,236 ms
70,872 KB
testcase_08 TLE -
testcase_09 AC 1,041 ms
58,720 KB
testcase_10 AC 1,438 ms
83,516 KB
testcase_11 AC 1,259 ms
73,556 KB
testcase_12 AC 1,266 ms
64,540 KB
testcase_13 AC 1,769 ms
85,632 KB
testcase_14 AC 1,856 ms
90,912 KB
testcase_15 AC 1,990 ms
96,928 KB
testcase_16 AC 1,502 ms
73,420 KB
testcase_17 TLE -
testcase_18 AC 1,378 ms
67,804 KB
testcase_19 TLE -
testcase_20 AC 1,227 ms
66,008 KB
testcase_21 AC 1,464 ms
71,592 KB
testcase_22 AC 1,963 ms
95,116 KB
testcase_23 AC 949 ms
56,532 KB
testcase_24 AC 951 ms
56,776 KB
testcase_25 AC 1,266 ms
63,356 KB
testcase_26 AC 1,657 ms
78,524 KB
testcase_27 AC 1,617 ms
77,476 KB
testcase_28 TLE -
testcase_29 AC 1,157 ms
58,720 KB
testcase_30 TLE -
testcase_31 AC 1,700 ms
85,800 KB
testcase_32 AC 1,445 ms
73,988 KB
testcase_33 TLE -
testcase_34 AC 1,391 ms
69,260 KB
testcase_35 TLE -
testcase_36 AC 944 ms
56,540 KB
testcase_37 AC 995 ms
56,800 KB
testcase_38 AC 960 ms
56,792 KB
testcase_39 AC 956 ms
57,020 KB
testcase_40 AC 919 ms
56,796 KB
testcase_41 TLE -
testcase_42 AC 1,348 ms
73,892 KB
testcase_43 AC 1,679 ms
89,824 KB
testcase_44 AC 1,224 ms
65,752 KB
testcase_45 AC 1,636 ms
89,012 KB
testcase_46 AC 943 ms
56,152 KB
testcase_47 AC 932 ms
112,068 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
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])
0