結果

問題 No.1301 Strange Graph Shortest Path
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-27 21:56:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,382 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 160,224 KB
最終ジャッジ日時 2024-09-13 00:55:42
合計ジャッジ時間 26,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,004 KB
testcase_01 AC 38 ms
53,872 KB
testcase_02 WA -
testcase_03 AC 567 ms
118,960 KB
testcase_04 AC 883 ms
155,836 KB
testcase_05 AC 545 ms
122,084 KB
testcase_06 AC 778 ms
146,240 KB
testcase_07 AC 708 ms
133,312 KB
testcase_08 AC 592 ms
120,196 KB
testcase_09 AC 758 ms
143,788 KB
testcase_10 WA -
testcase_11 AC 823 ms
144,520 KB
testcase_12 AC 799 ms
148,012 KB
testcase_13 AC 702 ms
129,200 KB
testcase_14 AC 754 ms
139,140 KB
testcase_15 AC 701 ms
134,492 KB
testcase_16 AC 862 ms
157,156 KB
testcase_17 AC 734 ms
134,060 KB
testcase_18 AC 658 ms
127,480 KB
testcase_19 AC 782 ms
148,044 KB
testcase_20 AC 814 ms
152,880 KB
testcase_21 AC 758 ms
134,196 KB
testcase_22 AC 801 ms
155,756 KB
testcase_23 AC 728 ms
131,176 KB
testcase_24 AC 848 ms
151,824 KB
testcase_25 AC 866 ms
150,124 KB
testcase_26 AC 758 ms
137,560 KB
testcase_27 AC 820 ms
142,420 KB
testcase_28 AC 613 ms
123,460 KB
testcase_29 WA -
testcase_30 AC 859 ms
146,688 KB
testcase_31 AC 831 ms
151,672 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 753 ms
147,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# V: 頂点数
# g[v] = {(w, cost)}:
#     頂点vから遷移可能な頂点(w)とそのコスト(cost)
# r: 始点の頂点

from heapq import heappush, heappop
INF = 10**18
def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist

N, M = map(int, input().split())
G = [set() for _ in range(N)]
vs = list()
X = []
for _ in range(M):
    a, b, c, d = map(int, input().split())
    a-=1;b-=1
#    if a==0:
#        R = min(c+d, R)
#        vs.append((b, c, d))
    G[a].add((b, c))
    G[b].add((a, c))
    X.append((a, b, c, d))
dd = dijkstra(N, G, 0)
ans = dd[N-1]

c = N-1
k = 0
R = [N-1]
while 1:
    mn = 10**18
    rr = -1
    for u, co in G[c]:
        if dd[u]+co < mn:
            mn = co+dd[u]
            rr = u
    R.append(rr)
    c = rr
    if rr == 0:
        break
    
G2 = [set() for _ in range(N)]
vs = set()
for u, v in zip(R, R[1:]):
    vs.add((u, v))
    vs.add((v, u))
for a, b, c, d in X:
    if (a, b) in vs:
        G2[a].add((b, d))
        G2[b].add((a, d))
    else:
        G2[a].add((b, c))
        G2[b].add((a, c))

dd = dijkstra(N, G2, N-1)
ans += dd[0]

print(ans)
0