結果

問題 No.807 umg tours
ユーザー H3PO4H3PO4
提出日時 2021-02-10 10:40:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,796 ms / 4,000 ms
コード長 793 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 185,376 KB
最終ジャッジ日時 2024-07-07 20:40:16
合計ジャッジ時間 46,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 771 ms
56,568 KB
testcase_01 AC 768 ms
56,304 KB
testcase_02 AC 771 ms
56,816 KB
testcase_03 AC 766 ms
56,568 KB
testcase_04 AC 769 ms
56,556 KB
testcase_05 AC 765 ms
56,556 KB
testcase_06 AC 771 ms
56,556 KB
testcase_07 AC 776 ms
56,816 KB
testcase_08 AC 770 ms
56,556 KB
testcase_09 AC 769 ms
56,432 KB
testcase_10 AC 770 ms
56,552 KB
testcase_11 AC 2,250 ms
157,292 KB
testcase_12 AC 1,807 ms
127,384 KB
testcase_13 AC 2,330 ms
161,784 KB
testcase_14 AC 1,387 ms
99,360 KB
testcase_15 AC 1,278 ms
90,756 KB
testcase_16 AC 2,426 ms
164,640 KB
testcase_17 AC 2,675 ms
184,676 KB
testcase_18 AC 2,770 ms
184,296 KB
testcase_19 AC 2,796 ms
183,892 KB
testcase_20 AC 1,704 ms
120,092 KB
testcase_21 AC 1,763 ms
123,000 KB
testcase_22 AC 1,174 ms
83,300 KB
testcase_23 AC 1,086 ms
76,968 KB
testcase_24 AC 2,056 ms
155,780 KB
testcase_25 AC 2,600 ms
185,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

input = sys.stdin.buffer.readline

N, M = map(int, input().split())

frm, to, length = [0] * (6 * M), [0] * (6 * M), [0] * (6 * M)
for i in range(0, 6 * M, 6):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    frm[i], to[i], length[i] = a, b, c
    frm[i + 1], to[i + 1], length[i + 1] = b, a, c
    frm[i + 2], to[i + 2], length[i + 2] = a + N, b + N, c
    frm[i + 3], to[i + 3], length[i + 3] = b + N, a + N, c
    frm[i + 4], to[i + 4], length[i + 4] = a, b + N, 0
    frm[i + 5], to[i + 5], length[i + 5] = b, a + N, 0

matr = csr_matrix((length, (frm, to)), shape=(2 * N, 2 * N))
way = dijkstra(matr, indices=0).astype(int)
ans = way[:N] + way[N:]
ans[0] = 0
print(*ans, sep='\n')
0