結果

問題 No.1301 Strange Graph Shortest Path
ユーザー roarisroaris
提出日時 2020-11-28 02:20:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,994 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 182,176 KB
最終ジャッジ日時 2024-09-12 21:49:34
合計ジャッジ時間 18,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,820 KB
testcase_01 AC 37 ms
52,204 KB
testcase_02 AC 2,834 ms
170,296 KB
testcase_03 AC 2,824 ms
159,332 KB
testcase_04 TLE -
testcase_05 AC 2,457 ms
172,728 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2,123 ms
160,964 KB
testcase_09 TLE -
testcase_10 AC 2,458 ms
160,716 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 2,653 ms
161,912 KB
testcase_15 AC 2,986 ms
163,388 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2,971 ms
168,504 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 2,827 ms
169,164 KB
testcase_28 AC 2,845 ms
167,788 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Mincostflow:
    def __init__(self, N):
        self.N = N
        self.G = [[] for _ in range(N)]
        
    def add_edge(self, u, v, cap, cost):
        self.G[u].append([v, cap, cost, len(self.G[v])])
        self.G[v].append([u, 0, -cost, len(self.G[u])-1])
    
    def min_cost_flow(self, s, t, f):
        res = 0
        
        while f>0:
            dist = [10**18]*self.N
            dist[s] = 0
            prev_v = [-1]*self.N
            prev_e = [-1]*self.N
            update = True
            
            while update:
                update = False
                
                for v in range(self.N):
                    if dist[v]==10**18:
                        continue
                    
                    for i in range(len(self.G[v])):
                        nv, cap, cost, _ = self.G[v][i]
                        
                        if cap>0 and dist[nv]>dist[v]+cost:
                            dist[nv] = dist[v]+cost
                            prev_v[nv] = v
                            prev_e[nv] = i
                            update = True
            
            if dist[t]==10**18:
                return -1
            
            d = f
            v = t
            
            while v!=s:
                d = min(d, self.G[prev_v[v]][prev_e[v]][1])
                v = prev_v[v]
            
            f -= d
            res += d*dist[t]
            v = t
            
            while v!=s:
                self.G[prev_v[v]][prev_e[v]][1] -= d
                rev = self.G[prev_v[v]][prev_e[v]][3]
                self.G[v][rev][1] += d
                v = prev_v[v]
        
        return res

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

for _ in range(M):
    u, v, c, d = map(int, input().split())
    mcf.add_edge(u-1, v-1, 1, c)
    mcf.add_edge(v-1, u-1, 1, c)
    mcf.add_edge(u-1, v-1, 1, d)
    mcf.add_edge(v-1, u-1, 1, d)

print(mcf.min_cost_flow(0, N-1, 2))
0