結果

問題 No.1301 Strange Graph Shortest Path
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-11-27 23:38:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,261 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 272,432 KB
最終ジャッジ日時 2024-09-13 01:17:08
合計ジャッジ時間 57,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,096 KB
testcase_01 AC 47 ms
60,508 KB
testcase_02 WA -
testcase_03 AC 1,309 ms
220,120 KB
testcase_04 AC 1,911 ms
268,296 KB
testcase_05 AC 1,488 ms
231,972 KB
testcase_06 AC 1,831 ms
268,600 KB
testcase_07 AC 1,618 ms
251,728 KB
testcase_08 AC 1,336 ms
218,112 KB
testcase_09 AC 1,764 ms
263,752 KB
testcase_10 WA -
testcase_11 AC 1,814 ms
268,040 KB
testcase_12 AC 1,888 ms
269,460 KB
testcase_13 AC 1,762 ms
244,412 KB
testcase_14 AC 1,538 ms
251,608 KB
testcase_15 AC 1,619 ms
246,720 KB
testcase_16 AC 2,059 ms
269,828 KB
testcase_17 AC 1,900 ms
263,120 KB
testcase_18 AC 1,659 ms
240,428 KB
testcase_19 AC 1,955 ms
270,108 KB
testcase_20 AC 1,832 ms
272,432 KB
testcase_21 AC 1,836 ms
262,752 KB
testcase_22 AC 1,679 ms
271,868 KB
testcase_23 AC 1,788 ms
254,360 KB
testcase_24 AC 1,794 ms
269,000 KB
testcase_25 AC 1,988 ms
272,008 KB
testcase_26 AC 1,782 ms
260,160 KB
testcase_27 AC 1,978 ms
267,004 KB
testcase_28 AC 1,530 ms
229,020 KB
testcase_29 WA -
testcase_30 AC 1,933 ms
270,320 KB
testcase_31 AC 2,009 ms
267,152 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,631 ms
264,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
from collections import deque
n,m = map(int,input().split())
e = [[] for i in range(n)]
for i in range(m):
    u,v,c,d = map(int,input().split())
    u -= 1
    v -= 1
    e[u].append([v,c,d])
    e[v].append([u,c,d])
def search(a,b,g):

    dis = [10**20]*n
    dis[a] = 0
    par = [-1]*n
    q = deque([a])
    while q:
        now = q.popleft()
        for nex,c,d in g[now]:
            if dis[nex] > dis[now]+c:
                dis[nex] = dis[now]+c
                par[nex] = now
                q.append(nex)
    ans = dis[b]
    now = b
    while par[now] != -1:
        p = par[now]
        for i in range(len(g[now])):
            if g[now][i][0] == p:
                g[now][i][1] = -1
                break
        now = p
    dis = [10**20]*n
    dis[b] = 0
    q = deque([b])
    while q:
        now = q.popleft()
        for nex,c,d in g[now]:
            if c == -1:
                if dis[nex] > dis[now]+d:
                    dis[nex] = dis[now]+d
                    q.append(nex)
            else:
                if dis[nex] > dis[now]+c:
                    dis[nex] = dis[now]+c
                    q.append(nex)
    ans += dis[a]
    return ans
print(min(search(0,n-1,deepcopy(e)),search(n-1,0,deepcopy(e))))
0