結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー maspymaspy
提出日時 2020-12-11 20:18:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 643 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 151,060 KB
最終ジャッジ日時 2024-09-20 01:24:05
合計ジャッジ時間 79,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,496 ms
53,748 KB
testcase_01 AC 879 ms
53,760 KB
testcase_02 AC 874 ms
53,732 KB
testcase_03 AC 878 ms
53,356 KB
testcase_04 AC 879 ms
53,232 KB
testcase_05 AC 875 ms
52,980 KB
testcase_06 AC 865 ms
53,256 KB
testcase_07 AC 1,064 ms
54,012 KB
testcase_08 AC 1,161 ms
53,520 KB
testcase_09 TLE -
testcase_10 AC 1,139 ms
53,816 KB
testcase_11 TLE -
testcase_12 AC 1,371 ms
54,048 KB
testcase_13 AC 1,616 ms
53,960 KB
testcase_14 AC 979 ms
53,880 KB
testcase_15 AC 1,164 ms
53,784 KB
testcase_16 AC 1,294 ms
53,788 KB
testcase_17 AC 1,044 ms
54,008 KB
testcase_18 AC 1,022 ms
53,484 KB
testcase_19 AC 1,501 ms
53,752 KB
testcase_20 AC 987 ms
53,752 KB
testcase_21 AC 1,974 ms
55,124 KB
testcase_22 AC 884 ms
53,524 KB
testcase_23 AC 888 ms
53,616 KB
testcase_24 AC 879 ms
53,228 KB
testcase_25 AC 878 ms
53,480 KB
testcase_26 AC 874 ms
53,360 KB
testcase_27 AC 872 ms
53,500 KB
testcase_28 AC 1,042 ms
53,876 KB
testcase_29 AC 1,411 ms
53,404 KB
testcase_30 AC 880 ms
53,516 KB
testcase_31 AC 1,049 ms
53,756 KB
testcase_32 AC 875 ms
53,368 KB
testcase_33 AC 1,866 ms
53,792 KB
testcase_34 AC 1,478 ms
53,692 KB
testcase_35 AC 1,019 ms
53,496 KB
testcase_36 AC 1,027 ms
53,496 KB
testcase_37 AC 965 ms
53,900 KB
testcase_38 AC 1,175 ms
53,256 KB
testcase_39 AC 968 ms
53,628 KB
testcase_40 AC 863 ms
53,520 KB
testcase_41 AC 871 ms
53,620 KB
testcase_42 AC 884 ms
53,108 KB
testcase_43 AC 1,356 ms
53,804 KB
testcase_44 AC 1,215 ms
53,708 KB
testcase_45 TLE -
testcase_46 AC 1,072 ms
53,764 KB
testcase_47 AC 1,653 ms
53,612 KB
testcase_48 AC 1,439 ms
53,640 KB
testcase_49 AC 1,077 ms
53,492 KB
testcase_50 AC 882 ms
53,508 KB
testcase_51 AC 876 ms
53,752 KB
testcase_52 AC 1,148 ms
53,748 KB
testcase_53 AC 1,077 ms
53,620 KB
testcase_54 AC 1,683 ms
53,476 KB
testcase_55 AC 1,682 ms
53,720 KB
testcase_56 AC 1,708 ms
53,868 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

T = int(readline())
N, M = map(int, readline().split())
frm, to, cost = np.array(read().split(), np.int64).reshape(-1, 3).T

G = csr_matrix((cost, (frm, to)), (N + 1, N + 1), dtype=np.float64)

ans = np.inf
for u, v, c in zip(frm, to, cost):
    G[u, v] = np.inf
    x = c + dijkstra(G, directed=T, indices=[v])[0, u]
    ans = min(ans, x)
    G[u, v] = c

if ans == np.inf:
    ans = -1
else:
    ans = int(ans + .5)
print(ans)
0