結果

問題 No.1301 Strange Graph Shortest Path
ユーザー rlangevinrlangevin
提出日時 2023-10-20 00:17:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,917 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,568 KB
実行使用メモリ 173,672 KB
最終ジャッジ日時 2023-10-20 00:18:59
合計ジャッジ時間 90,776 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,368 KB
testcase_01 AC 38 ms
53,368 KB
testcase_02 AC 2,424 ms
169,216 KB
testcase_03 AC 2,691 ms
158,536 KB
testcase_04 TLE -
testcase_05 AC 2,184 ms
172,312 KB
testcase_06 TLE -
testcase_07 AC 2,956 ms
166,224 KB
testcase_08 AC 1,729 ms
159,792 KB
testcase_09 TLE -
testcase_10 AC 1,739 ms
159,372 KB
testcase_11 AC 2,880 ms
168,156 KB
testcase_12 AC 2,770 ms
168,624 KB
testcase_13 AC 2,716 ms
169,940 KB
testcase_14 AC 2,279 ms
160,616 KB
testcase_15 AC 2,428 ms
161,596 KB
testcase_16 AC 2,676 ms
173,672 KB
testcase_17 TLE -
testcase_18 AC 2,879 ms
163,020 KB
testcase_19 AC 2,714 ms
166,336 KB
testcase_20 AC 2,992 ms
165,020 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 2,365 ms
165,884 KB
testcase_25 AC 2,557 ms
172,980 KB
testcase_26 AC 2,748 ms
166,532 KB
testcase_27 AC 2,422 ms
167,884 KB
testcase_28 AC 2,322 ms
167,260 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 38 ms
53,436 KB
testcase_33 AC 430 ms
168,240 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

# https://tjkendev.github.io/procon-library/python/min_cost_flow/primal-dual.html
# 最小費用流(minimum cost flow)
class MinCostFlow:
    def __init__(self, n):
        self.n = n
        self.G = [[] for i in range(n)]

    def addEdge(self, f, t, cap, cost):
        # [to, cap, cost, rev]
        self.G[f].append([t, cap, cost, len(self.G[t])])
        self.G[t].append([f, 0, -cost, len(self.G[f])-1])

    def minCostFlow(self, s, t, f):
        n = self.n
        G = self.G
        prevv = [0]*n; preve = [0]*n
        INF = 10**18

        res = 0
        while f:
            dist = [INF]*n
            dist[s] = 0
            update = 1
            while update:
                update = 0
                for v in range(n):
                    if dist[v] == INF:
                        continue
                    gv = G[v]
                    for i in range(len(gv)):
                        to, cap, cost, rev = gv[i]
                        if cap > 0 and dist[v] + cost < dist[to]:
                            dist[to] = dist[v] + cost
                            prevv[to] = v; preve[to] = i
                            update = 1
            if dist[t] == INF:
                return -1

            d = f; v = t
            while v != s:
                d = min(d, G[prevv[v]][preve[v]][1])
                v = prevv[v]
            f -= d
            res += d * dist[t]
            v = t
            while v != s:
                e = G[prevv[v]][preve[v]]
                e[1] -= d
                G[v][e[3]][1] += d
                v = prevv[v]
        return res
    
    
N, M = map(int, input().split())
G = MinCostFlow(N)
for i in range(M):
    u, v, c, d = map(int, input().split())
    u, v = u - 1, v - 1
    G.addEdge(u, v, 1, c)
    G.addEdge(u, v, 1, d)
    G.addEdge(v, u, 1, c)
    G.addEdge(v, u, 1, d)
    
print(G.minCostFlow(0, N-1, 2))
0