結果
問題 | No.788 トラックの移動 |
ユーザー | nephrologist |
提出日時 | 2020-02-26 22:09:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,349 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 147,656 KB |
最終ジャッジ日時 | 2024-10-13 15:31:50 |
合計ジャッジ時間 | 6,553 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#dijkstra? from heapq import heappop, heappush, heapify n,m,l=map(int,input().split()) T=list(map(int,input().split())) graph=[[] for _ in range(n+1)] dist=[[10**10]*(n+1) for _ in range(n+1)] if sum(T)==1: print(0) else: for _ in range(m): a,b,c=map(int,input().split()) graph[a].append((c,b)) graph[b].append((c,a)) def dij(s,graph,dist): used=[False]*(n+1) used[s]=True dist[s][s]=0 edgelist=[] for es in graph[s]: heappush(edgelist,es) while edgelist: kyori,ten=heappop(edgelist) if used[ten]==True: continue dist[s][ten]=kyori used[ten]=True for es in graph[ten]: if used[es[1]]==False: heappush(edgelist,(es[0]+dist[s][ten], es[1])) return dist ans=10**20 for i in range(1,n+1): dist=dij(i, graph,dist) for p in range(1,n+1): ouhuku=0 for j in range(n): ouhuku+=2*T[j]*dist[p][j+1] for first in range(1,n+1): if T[first-1]==0: continue if first==p: temp=ouhuku+dist[l][first] else: temp=ouhuku+dist[l][first]+dist[first][p]-(dist[p][first]*2) ans=min(ans,temp) print(ans)