結果

問題 No.1301 Strange Graph Shortest Path
ユーザー tktk_snsntktk_snsn
提出日時 2020-11-27 23:58:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,036 ms / 3,000 ms
コード長 3,143 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 205,928 KB
最終ジャッジ日時 2024-07-26 20:36:58
合計ジャッジ時間 29,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,944 KB
testcase_01 AC 39 ms
53,464 KB
testcase_02 AC 827 ms
199,060 KB
testcase_03 AC 750 ms
181,504 KB
testcase_04 AC 943 ms
204,520 KB
testcase_05 AC 851 ms
198,848 KB
testcase_06 AC 952 ms
192,868 KB
testcase_07 AC 864 ms
192,704 KB
testcase_08 AC 793 ms
183,096 KB
testcase_09 AC 713 ms
186,292 KB
testcase_10 AC 725 ms
183,212 KB
testcase_11 AC 856 ms
198,192 KB
testcase_12 AC 838 ms
198,368 KB
testcase_13 AC 725 ms
198,180 KB
testcase_14 AC 920 ms
186,424 KB
testcase_15 AC 720 ms
186,344 KB
testcase_16 AC 887 ms
204,332 KB
testcase_17 AC 907 ms
202,564 KB
testcase_18 AC 915 ms
188,928 KB
testcase_19 AC 751 ms
192,300 KB
testcase_20 AC 804 ms
190,872 KB
testcase_21 AC 807 ms
199,364 KB
testcase_22 AC 957 ms
194,560 KB
testcase_23 AC 796 ms
199,920 KB
testcase_24 AC 950 ms
193,156 KB
testcase_25 AC 877 ms
203,084 KB
testcase_26 AC 806 ms
192,424 KB
testcase_27 AC 748 ms
197,712 KB
testcase_28 AC 787 ms
190,908 KB
testcase_29 AC 1,036 ms
203,984 KB
testcase_30 AC 794 ms
202,680 KB
testcase_31 AC 898 ms
203,068 KB
testcase_32 AC 40 ms
54,928 KB
testcase_33 AC 485 ms
193,036 KB
testcase_34 AC 773 ms
205,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


class MCF_graph(object):
    def __init__(self, n):
        self.n = n
        self.g = [[] for _ in range(n)]  # to, rev, cap, cost
        self.pos = []

    def add_edge(self, frm, to, cap, cost):
        m = len(self.pos)
        self.pos.append((frm, len(self.g[frm])))
        self.g[frm].append([to, len(self.g[to]), cap, cost])
        self.g[to].append([frm, len(self.g[frm]) - 1, 0, -cost])
        return m

    def __get_edge(self, i):
        e_to, e_rev, e_cap, e_cost = self.g[self.pos[i][0]][self.pos[i][1]]
        re_to, _, re_cap, _ = self.g[e_to][e_rev]
        # from, to, cap, flow, cost
        return (re_to, e_to, e_cap + re_cap, re_cap, e_cost)

    def edges(self):
        m = len(self.pos)
        for i in range(m):
            yield self.__get_edge(i)

    def flow(self, s, t, flow_limit=10**18):
        return self.slope(s, t, flow_limit)[-1]

    def slope(self, s, t, flow_limit=10**18):
        dual = [0] * self.n
        flow = 0
        cost = 0
        prev_cost = -1
        result = [(0, 0)]  # cap, cost
        while flow < flow_limit:
            # call dual_ref()
            dist = [10**18] * self.n
            pv = [-1] * self.n
            pe = [-1] * self.n
            vis = [False] * self.n
            dist[s] = 0
            que = [(0, s)]
            while que:
                _, v = heapq.heappop(que)
                if vis[v]:
                    continue
                vis[v] = True
                if v == t:
                    break
                for i, (e_to, _, e_cap, e_cost) in enumerate(self.g[v]):
                    if vis[e_to] or (not e_cap):
                        continue
                    tmp_cost = e_cost - dual[e_to] + dual[v]
                    if dist[e_to] > dist[v] + tmp_cost:
                        dist[e_to] = dist[v] + tmp_cost
                        pv[e_to] = v
                        pe[e_to] = i
                        heapq.heappush(que, (dist[e_to], e_to))
            if not vis[t]:
                break
            for v, visited in enumerate(vis):
                if not visited:
                    continue
                dual[v] -= dist[t] - dist[v]
            # end dual_ref()

            c = flow_limit - flow
            v = t
            while v != s:
                c = min(c, self.g[pv[v]][pe[v]][2])
                v = pv[v]
            v = t
            while v != s:
                i, j = pv[v], pe[v]
                self.g[i][j][2] -= c
                self.g[v][self.g[i][j][1]][2] += c
                v = i
            d = -dual[s]
            flow += c
            cost += c * d
            if prev_cost == d:
                result.pop()
            result.append((flow, cost))
            prev_cost = cost
        return result


n, m = map(int, input().split())
g = MCF_graph(n)
for _ in range(m):
    a, b, c, d = map(int, input().split())
    a -= 1
    b -= 1
    g.add_edge(a, b, 1, c)
    g.add_edge(a, b, 1, d)
    g.add_edge(b, a, 1, c)
    g.add_edge(b, a, 1, d)

res = g.flow(0, n - 1, 2)[-1]
print(res)
0