結果

問題 No.1301 Strange Graph Shortest Path
ユーザー titiatitia
提出日時 2020-11-28 04:50:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,088 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 234,984 KB
最終ジャッジ日時 2024-09-12 22:01:07
合計ジャッジ時間 52,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,580 KB
testcase_01 AC 36 ms
52,988 KB
testcase_02 WA -
testcase_03 AC 1,255 ms
178,716 KB
testcase_04 AC 1,843 ms
231,076 KB
testcase_05 AC 1,147 ms
182,248 KB
testcase_06 AC 1,620 ms
212,784 KB
testcase_07 AC 1,459 ms
200,920 KB
testcase_08 AC 1,199 ms
179,296 KB
testcase_09 AC 1,632 ms
209,080 KB
testcase_10 WA -
testcase_11 AC 1,618 ms
213,568 KB
testcase_12 AC 1,726 ms
219,476 KB
testcase_13 AC 1,516 ms
198,464 KB
testcase_14 AC 1,517 ms
201,472 KB
testcase_15 AC 1,532 ms
198,436 KB
testcase_16 AC 1,914 ms
231,672 KB
testcase_17 AC 1,605 ms
205,904 KB
testcase_18 AC 1,443 ms
194,436 KB
testcase_19 AC 1,719 ms
216,460 KB
testcase_20 AC 1,687 ms
219,784 KB
testcase_21 AC 1,613 ms
204,116 KB
testcase_22 AC 1,794 ms
225,564 KB
testcase_23 AC 1,532 ms
201,340 KB
testcase_24 AC 1,769 ms
219,092 KB
testcase_25 AC 1,876 ms
224,452 KB
testcase_26 AC 1,608 ms
205,696 KB
testcase_27 AC 1,673 ms
211,188 KB
testcase_28 AC 1,344 ms
185,892 KB
testcase_29 WA -
testcase_30 AC 1,764 ms
219,488 KB
testcase_31 AC 1,792 ms
223,932 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,405 ms
200,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

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

EDGE=[dict() for i in range(2*N+1)]

for i in range(M):
    u,v,c,d=map(int,input().split())
    EDGE[u][v]=[c,1]
    EDGE[u][N+v]=[d,1]
    EDGE[u][N+u]=[0,float("inf")]
    EDGE[N+u][u]=[0,float("inf")]
    EDGE[N+v][u]=[d,0]

    EDGE[v][u]=[c,1]
    EDGE[v][N+u]=[d,1]
    EDGE[v][N+v]=[0,float("inf")]
    EDGE[N+v][v]=[0,float("inf")]
    EDGE[N+u][v]=[d,0]


start=1
goal=N

BACK=[-1]*(2*N+1)
LA=0

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

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

    LA+=ANS[goal]
 
    NOW=goal
    while NOW!=start:
        fr=BACK[NOW]
        EDGE[fr][NOW][1]-=1
        EDGE[NOW][fr][1]+=1

        NOW=fr

print(LA)
0