結果

問題 No.1301 Strange Graph Shortest Path
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-27 22:07:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,295 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 161,384 KB
最終ジャッジ日時 2024-09-13 00:58:50
合計ジャッジ時間 26,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,240 KB
testcase_01 AC 40 ms
53,344 KB
testcase_02 WA -
testcase_03 AC 576 ms
119,604 KB
testcase_04 AC 875 ms
157,176 KB
testcase_05 AC 552 ms
122,992 KB
testcase_06 AC 785 ms
146,860 KB
testcase_07 AC 718 ms
134,136 KB
testcase_08 AC 613 ms
120,588 KB
testcase_09 AC 773 ms
145,728 KB
testcase_10 WA -
testcase_11 AC 848 ms
145,420 KB
testcase_12 AC 838 ms
149,176 KB
testcase_13 AC 746 ms
129,516 KB
testcase_14 AC 797 ms
140,232 KB
testcase_15 AC 745 ms
135,384 KB
testcase_16 AC 897 ms
158,328 KB
testcase_17 AC 779 ms
134,808 KB
testcase_18 AC 701 ms
128,124 KB
testcase_19 AC 824 ms
148,948 KB
testcase_20 AC 847 ms
154,060 KB
testcase_21 AC 772 ms
135,284 KB
testcase_22 AC 815 ms
157,504 KB
testcase_23 AC 721 ms
131,632 KB
testcase_24 AC 830 ms
153,100 KB
testcase_25 AC 860 ms
151,040 KB
testcase_26 AC 774 ms
138,372 KB
testcase_27 AC 826 ms
143,584 KB
testcase_28 AC 638 ms
123,616 KB
testcase_29 WA -
testcase_30 AC 911 ms
147,844 KB
testcase_31 AC 866 ms
152,576 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 781 ms
148,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
INF = 10**18
def dijkstra(N, G, s):
    dist = [INF] * N
    parents = [-1]*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
                parents[t] = v
                heappush(que, (dist[t], t))
    return dist, parents

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
    G[a].add((b, c))
    G[b].add((a, c))
    X.append((a, b, c, d))
dd, par = dijkstra(N, G, 0)
ans = dd[N-1]

#c = N-1
#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

c = N-1
R = [N-1]
while c!=0:
    c = par[c]
    R.append(c)
    
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:
        co = d
    else:
        co = c
    G2[a].add((b, co))
    G2[b].add((a, co))

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