結果

問題 No.1301 Strange Graph Shortest Path
ユーザー yuusanlondonyuusanlondon
提出日時 2020-11-27 22:25:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 148,760 KB
最終ジャッジ日時 2024-07-26 19:48:39
合計ジャッジ時間 43,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,864 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 WA -
testcase_03 AC 1,174 ms
134,560 KB
testcase_04 AC 1,362 ms
148,760 KB
testcase_05 AC 1,307 ms
139,644 KB
testcase_06 AC 1,279 ms
142,428 KB
testcase_07 AC 1,324 ms
141,252 KB
testcase_08 AC 1,164 ms
134,728 KB
testcase_09 AC 1,197 ms
139,352 KB
testcase_10 WA -
testcase_11 AC 1,332 ms
144,508 KB
testcase_12 AC 1,308 ms
144,536 KB
testcase_13 AC 1,384 ms
141,836 KB
testcase_14 AC 1,295 ms
138,888 KB
testcase_15 AC 1,319 ms
138,456 KB
testcase_16 AC 1,325 ms
147,968 KB
testcase_17 AC 1,376 ms
143,928 KB
testcase_18 AC 1,263 ms
137,724 KB
testcase_19 AC 1,299 ms
143,468 KB
testcase_20 AC 1,128 ms
141,492 KB
testcase_21 AC 1,323 ms
142,260 KB
testcase_22 AC 1,147 ms
144,404 KB
testcase_23 AC 1,461 ms
143,448 KB
testcase_24 AC 1,231 ms
142,904 KB
testcase_25 AC 1,385 ms
147,848 KB
testcase_26 AC 1,333 ms
141,704 KB
testcase_27 AC 1,265 ms
142,168 KB
testcase_28 AC 1,268 ms
139,572 KB
testcase_29 WA -
testcase_30 AC 1,431 ms
146,872 KB
testcase_31 AC 1,383 ms
147,112 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,252 ms
144,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
INF=10**20
def Dijkstra(graph, start):
  dist=[INF]*len(graph)
  parent=[INF]*len(graph)
  queue=[(0, start, INF)]
  while queue:
    path_len, v, parent1=heapq.heappop(queue)
    if dist[v]==INF: 
      dist[v]=path_len
      parent[v]=parent1
      for w in graph[v]:
        if dist[w[0]]==INF:      
          heapq.heappush(queue, (dist[v]+w[1], w[0], v))         
  return (dist,parent)
n,m=map(int,input().split())
graph=[]
for i in range(n):
  graph.append([])
edges=[]
for _ in range(m):
  u,v,c,d=map(int,input().split())
  edges.append([u,v,c,d])
  graph[u-1].append((v-1,c))
  graph[v-1].append((u-1,c))
dist,parent=Dijkstra(graph,0)
ans=dist[n-1]
point=n-1
used=set()
while point!=0:
  used.add(parent[point]*(10**10)+point)
  used.add(point*(10**10)+parent[point])
  point=parent[point]
graph=[]
for i in range(n):
  graph.append([])
for i in range(m):
  u=edges[i][0]
  v=edges[i][1]
  c=edges[i][2]
  d=edges[i][3]
  if (u-1)*(10**10)+(v-1) in used:
    graph[u-1].append([v-1,d])
    graph[v-1].append([u-1,d])
  else:
    graph[u-1].append([v-1,c])
    graph[v-1].append([u-1,c])
dist,parent=Dijkstra(graph,0)
ans+=dist[n-1]
print(ans)
0