結果

問題 No.848 なかよし旅行
ユーザー H3PO4H3PO4
提出日時 2021-02-24 18:31:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,500 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 250,704 KB
最終ジャッジ日時 2024-11-08 01:23:41
合計ジャッジ時間 36,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,294 ms
74,252 KB
testcase_01 AC 985 ms
56,584 KB
testcase_02 AC 966 ms
56,468 KB
testcase_03 AC 960 ms
56,328 KB
testcase_04 AC 968 ms
56,584 KB
testcase_05 AC 968 ms
56,580 KB
testcase_06 AC 952 ms
56,456 KB
testcase_07 AC 981 ms
56,364 KB
testcase_08 AC 973 ms
56,876 KB
testcase_09 AC 987 ms
56,784 KB
testcase_10 AC 983 ms
56,752 KB
testcase_11 AC 1,279 ms
178,316 KB
testcase_12 AC 1,470 ms
206,788 KB
testcase_13 AC 1,478 ms
231,860 KB
testcase_14 AC 1,217 ms
215,628 KB
testcase_15 AC 1,315 ms
203,464 KB
testcase_16 AC 1,500 ms
249,692 KB
testcase_17 AC 1,266 ms
184,624 KB
testcase_18 AC 1,149 ms
170,652 KB
testcase_19 AC 1,139 ms
184,008 KB
testcase_20 AC 1,210 ms
243,632 KB
testcase_21 AC 1,359 ms
186,848 KB
testcase_22 AC 1,280 ms
71,176 KB
testcase_23 AC 1,201 ms
243,716 KB
testcase_24 AC 961 ms
56,968 KB
testcase_25 AC 1,468 ms
250,704 KB
testcase_26 AC 968 ms
56,072 KB
testcase_27 AC 964 ms
56,336 KB
testcase_28 AC 959 ms
56,328 KB
testcase_29 AC 959 ms
56,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

input = sys.stdin.buffer.readline

N, M, P, Q, T = map(int, input().split())
P -= 1
Q -= 1
edges = np.array([tuple(map(int, input().split())) for _ in range(M)]).T

matr = csr_matrix((edges[2], (edges[:2] - 1)), shape=(N, N))
way_1, way_p, way_q = dijkstra(matr, indices=(0, P, Q), directed=False).astype(int)

if way_1[P] + way_1[Q] + way_p[Q] <= T:
    print(T)
    exit()

p_path = way_1[:, None] + way_p[:, None] + way_p[None, :] + way_1[None, :]
q_path = way_1[:, None] + way_q[:, None] + way_q[None, :] + way_1[None, :]
res = np.where((p_path <= T) & (q_path <= T),
               T - np.maximum(way_p[:, None] + way_p[None, :], way_q[:, None] + way_q[None, :]),
               -1)
ans = res.max()
print(ans)
0