結果

問題 No.1301 Strange Graph Shortest Path
ユーザー ygd.ygd.
提出日時 2020-11-27 22:58:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,272 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 135,344 KB
最終ジャッジ日時 2024-07-26 20:14:20
合計ジャッジ時間 22,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,356 KB
testcase_01 AC 39 ms
53,200 KB
testcase_02 WA -
testcase_03 AC 564 ms
115,688 KB
testcase_04 AC 741 ms
132,996 KB
testcase_05 AC 522 ms
114,640 KB
testcase_06 AC 695 ms
127,736 KB
testcase_07 AC 652 ms
122,728 KB
testcase_08 AC 572 ms
115,256 KB
testcase_09 AC 673 ms
126,156 KB
testcase_10 WA -
testcase_11 AC 690 ms
127,956 KB
testcase_12 AC 667 ms
128,520 KB
testcase_13 AC 617 ms
121,728 KB
testcase_14 AC 678 ms
123,640 KB
testcase_15 AC 616 ms
121,700 KB
testcase_16 AC 726 ms
134,400 KB
testcase_17 AC 675 ms
124,616 KB
testcase_18 AC 595 ms
120,596 KB
testcase_19 AC 684 ms
128,204 KB
testcase_20 AC 686 ms
129,416 KB
testcase_21 AC 628 ms
122,524 KB
testcase_22 AC 688 ms
131,488 KB
testcase_23 AC 650 ms
122,312 KB
testcase_24 AC 688 ms
130,196 KB
testcase_25 AC 725 ms
131,596 KB
testcase_26 AC 686 ms
124,560 KB
testcase_27 AC 695 ms
126,728 KB
testcase_28 AC 559 ms
118,388 KB
testcase_29 WA -
testcase_30 AC 756 ms
129,784 KB
testcase_31 AC 714 ms
131,512 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 569 ms
124,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N,M = map(int,input().split()); INF = float("inf")
Graph = [[] for _ in range(N)]
INPUT = []
for i in range(M):
    s,g,x,y = map(int,input().split()); INPUT.append((s,g,x,y))
    s-=1;g-=1
    Graph[s].append((x,g))
    Graph[g].append((x,s))

def dijkstra_heap2(s,G):
  #S:start, V: node, E: Edge, G: Graph
  V = len(G)
  d = [INF for _ in range(V)]
  d[s] = 0
  prev = [0]*V
  prev[s] = -1
  PQ = []
  heappush(PQ,(0,s))
  
  while PQ:
    c,v = heappop(PQ)
    if d[v] < c:
      continue
    d[v] = c
    for cost,u in G[v]:
      if d[u] <= cost + d[v]:
        continue
      d[u] = cost + d[v]
      prev[u] = v
      heappush(PQ,(d[u], u))
  
  return d, prev

D,PREV = dijkstra_heap2(0,Graph)
#print(D)
ans = D[N-1]
#print(PREV)
now = N-1
Used = set()
while now != 0:
    mae = now
    now = PREV[mae]
    Used.add((mae,now))
#print(Used)
Graph.clear()
New_Graph = [[] for _ in range(N)]
for P in INPUT:
    a,b,x,y = P
    a-=1;b-=1
    if (a,b) in Used or (b,a) in Used:
        New_Graph[a].append((y,b))
        New_Graph[b].append((y,a))
    else:
        New_Graph[a].append((x,b))
        New_Graph[b].append((x,a))
#print(New_Graph)
RD, RPREV = dijkstra_heap2(N-1,New_Graph)
#print(RD)
ans += RD[0]
print(ans)
0