結果
問題 | No.807 umg tours |
ユーザー | yuruhiya |
提出日時 | 2020-09-06 10:58:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 3,553 ms / 4,000 ms |
コード長 | 595 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 299,160 KB |
最終ジャッジ日時 | 2024-05-06 20:48:41 |
合計ジャッジ時間 | 51,917 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
外部呼び出し有り |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 886 ms
56,396 KB |
testcase_01 | AC | 891 ms
56,528 KB |
testcase_02 | AC | 900 ms
56,516 KB |
testcase_03 | AC | 885 ms
56,656 KB |
testcase_04 | AC | 897 ms
56,524 KB |
testcase_05 | AC | 894 ms
56,532 KB |
testcase_06 | AC | 896 ms
56,656 KB |
testcase_07 | AC | 877 ms
56,516 KB |
testcase_08 | AC | 883 ms
56,276 KB |
testcase_09 | AC | 877 ms
56,528 KB |
testcase_10 | AC | 884 ms
56,400 KB |
testcase_11 | AC | 2,886 ms
262,532 KB |
testcase_12 | AC | 2,301 ms
191,896 KB |
testcase_13 | AC | 3,020 ms
258,772 KB |
testcase_14 | AC | 1,738 ms
140,852 KB |
testcase_15 | AC | 1,603 ms
125,512 KB |
testcase_16 | AC | 3,182 ms
276,444 KB |
testcase_17 | AC | 3,553 ms
298,984 KB |
testcase_18 | AC | 3,532 ms
298,844 KB |
testcase_19 | AC | 3,549 ms
299,160 KB |
testcase_20 | AC | 2,306 ms
175,068 KB |
testcase_21 | AC | 2,317 ms
180,020 KB |
testcase_22 | AC | 1,450 ms
108,912 KB |
testcase_23 | AC | 1,323 ms
98,088 KB |
testcase_24 | AC | 2,792 ms
238,072 KB |
testcase_25 | AC | 3,473 ms
299,016 KB |
ソースコード
from numpy import* from scipy.sparse import* from sys import stdin def solve(): n,m=map(int,stdin.readline().split()) e=[[]]*(m*6) p=0 for i in range(m): a,b,c=map(int,stdin.readline().split()) a-=1;b-=1 e[p]=[a,b,c] e[p+1]=[a,b+n,0] e[p+2]=[a+n,b+n,c] e[p+3]=[b,a,c] e[p+4]=[b,a+n,0] e[p+5]=[b+n,a+n,c] p+=6 edge=array(e,int64).T graph=csr_matrix((edge[2],edge[:2]),(n+n,n+n)) dist=csgraph.dijkstra(graph,True,0) for i in range(n): print(int(dist[i]+min(dist[i],dist[i+n]))) solve()