結果

問題 No.1301 Strange Graph Shortest Path
ユーザー titiatitia
提出日時 2020-11-28 07:38:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,625 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 241,344 KB
最終ジャッジ日時 2024-09-12 22:06:45
合計ジャッジ時間 41,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,296 KB
testcase_01 AC 39 ms
53,792 KB
testcase_02 WA -
testcase_03 AC 1,020 ms
195,000 KB
testcase_04 AC 1,391 ms
239,588 KB
testcase_05 AC 1,006 ms
210,704 KB
testcase_06 AC 1,269 ms
219,956 KB
testcase_07 AC 1,267 ms
213,504 KB
testcase_08 AC 1,038 ms
196,452 KB
testcase_09 AC 1,168 ms
214,424 KB
testcase_10 WA -
testcase_11 AC 1,290 ms
220,140 KB
testcase_12 AC 1,344 ms
222,848 KB
testcase_13 AC 1,245 ms
219,976 KB
testcase_14 AC 1,205 ms
211,028 KB
testcase_15 AC 1,202 ms
209,308 KB
testcase_16 AC 1,408 ms
240,092 KB
testcase_17 AC 1,270 ms
225,736 KB
testcase_18 AC 1,169 ms
206,192 KB
testcase_19 AC 1,302 ms
221,204 KB
testcase_20 AC 1,253 ms
224,144 KB
testcase_21 AC 1,181 ms
222,056 KB
testcase_22 AC 1,267 ms
226,028 KB
testcase_23 AC 1,240 ms
222,336 KB
testcase_24 AC 1,305 ms
222,208 KB
testcase_25 AC 1,431 ms
235,440 KB
testcase_26 AC 1,257 ms
214,832 KB
testcase_27 AC 1,353 ms
219,376 KB
testcase_28 AC 1,063 ms
201,972 KB
testcase_29 WA -
testcase_30 AC 1,408 ms
233,132 KB
testcase_31 AC 1,398 ms
235,656 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,077 ms
229,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

N,M=map(int,input().split())

EDGE=[[] for i in range(N+1)]
EDGELIST=[]

eind=0
for i in range(M):
    u,v,c,d=map(int,input().split())
    X=[v,c,1,eind]
    EDGE[u].append(X)
    EDGELIST.append(X)
    eind+=1

    X=[u,c,0,eind]
    EDGE[v].append(X)
    EDGELIST.append(X)
    eind+=1

    X=[u,c,1,eind]
    EDGE[v].append(X)
    EDGELIST.append(X)
    eind+=1

    X=[v,c,0,eind]
    EDGE[u].append(X)
    EDGELIST.append(X)
    eind+=1


    X=[v,d,1,eind]
    EDGE[u].append(X)
    EDGELIST.append(X)
    eind+=1

    X=[u,d,0,eind]
    EDGE[v].append(X)
    EDGELIST.append(X)
    eind+=1

    X=[u,d,1,eind]
    EDGE[v].append(X)
    EDGELIST.append(X)
    eind+=1

    X=[v,d,0,eind]
    EDGE[u].append(X)
    EDGELIST.append(X)
    eind+=1


start=1
goal=N

BACK=[[-1,-1] for i in range(N+1)]
LA=0
P=[0]*(N+1)

for fl in range(2):
    ANS=[float("inf")]*(N+1)
    Q=[(0,start)]
    ANS[start]=0
 
    while Q:
        time,fr = heapq.heappop(Q)
        if time > ANS[fr]:
            continue

        for to,cost,vol,ind in EDGE[fr]:
            
            if vol>0 and ANS[to]>ANS[fr]+cost:
                
                ANS[to]=ANS[fr]+cost
                BACK[to]=[fr,ind]
                heapq.heappush(Q,(ANS[to],to))

    LA+=ANS[goal]+P[goal]
    P=[P[i]-ANS[i] for i in range(N+1)]
 
    NOW=goal
    while NOW!=start:
        fr,ind=BACK[NOW]
        EDGELIST[ind][2]-=1
        EDGELIST[ind^1][2]+=1

        NOW=fr

    for i in range(N+1):
        for j in range(len(EDGE[i])):
            EDGE[i][j][1]+=ANS[EDGE[i][j][0]]-ANS[i]

print(LA)
0