結果

問題 No.1301 Strange Graph Shortest Path
ユーザー titiatitia
提出日時 2020-11-28 07:08:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,445 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 252,668 KB
最終ジャッジ日時 2024-09-12 22:04:55
合計ジャッジ時間 36,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,612 KB
testcase_01 AC 38 ms
54,664 KB
testcase_02 AC 954 ms
213,836 KB
testcase_03 AC 858 ms
192,468 KB
testcase_04 AC 1,067 ms
227,900 KB
testcase_05 AC 903 ms
209,696 KB
testcase_06 AC 1,040 ms
210,460 KB
testcase_07 AC 1,044 ms
207,636 KB
testcase_08 AC 800 ms
191,828 KB
testcase_09 AC 968 ms
206,072 KB
testcase_10 AC 830 ms
193,960 KB
testcase_11 AC 996 ms
211,332 KB
testcase_12 AC 974 ms
213,324 KB
testcase_13 AC 1,033 ms
216,388 KB
testcase_14 AC 966 ms
202,868 KB
testcase_15 AC 941 ms
201,464 KB
testcase_16 AC 1,083 ms
227,796 KB
testcase_17 AC 995 ms
218,768 KB
testcase_18 AC 928 ms
198,672 KB
testcase_19 AC 1,011 ms
210,028 KB
testcase_20 AC 971 ms
210,708 KB
testcase_21 AC 962 ms
215,712 KB
testcase_22 AC 990 ms
213,952 KB
testcase_23 AC 979 ms
214,896 KB
testcase_24 AC 965 ms
211,260 KB
testcase_25 AC 1,030 ms
224,820 KB
testcase_26 AC 940 ms
207,132 KB
testcase_27 AC 1,000 ms
210,544 KB
testcase_28 AC 839 ms
199,272 KB
testcase_29 AC 1,051 ms
227,944 KB
testcase_30 AC 1,172 ms
226,272 KB
testcase_31 AC 1,078 ms
224,752 KB
testcase_32 AC 39 ms
53,280 KB
testcase_33 AC 485 ms
202,996 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

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

for fl in range(2):
    ANS=[1<<60]*(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]
 
    NOW=goal
    while NOW!=start:
        fr,ind=BACK[NOW]
        EDGELIST[ind][2]-=1
        EDGELIST[ind^1][2]+=1

        NOW=fr

print(LA)
0