結果

問題 No.1301 Strange Graph Shortest Path
ユーザー zkouzkou
提出日時 2020-11-07 10:50:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,618 ms / 3,000 ms
コード長 4,164 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 87,296 KB
実行使用メモリ 314,460 KB
最終ジャッジ日時 2023-10-10 21:37:13
合計ジャッジ時間 67,017 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
71,316 KB
testcase_01 AC 81 ms
71,356 KB
testcase_02 AC 2,087 ms
301,360 KB
testcase_03 AC 1,835 ms
271,876 KB
testcase_04 AC 2,375 ms
314,452 KB
testcase_05 AC 2,216 ms
301,868 KB
testcase_06 AC 2,357 ms
298,808 KB
testcase_07 AC 2,044 ms
298,848 KB
testcase_08 AC 1,973 ms
273,544 KB
testcase_09 AC 1,590 ms
284,764 KB
testcase_10 AC 1,654 ms
273,924 KB
testcase_11 AC 1,993 ms
303,424 KB
testcase_12 AC 1,918 ms
304,776 KB
testcase_13 AC 1,806 ms
302,780 KB
testcase_14 AC 2,338 ms
282,868 KB
testcase_15 AC 1,631 ms
285,436 KB
testcase_16 AC 2,230 ms
314,460 KB
testcase_17 AC 2,250 ms
310,084 KB
testcase_18 AC 2,227 ms
292,508 KB
testcase_19 AC 1,654 ms
300,232 KB
testcase_20 AC 2,092 ms
298,648 KB
testcase_21 AC 2,071 ms
305,736 KB
testcase_22 AC 2,133 ms
303,788 KB
testcase_23 AC 1,813 ms
305,440 KB
testcase_24 AC 2,282 ms
300,080 KB
testcase_25 AC 2,177 ms
310,872 KB
testcase_26 AC 2,112 ms
300,432 KB
testcase_27 AC 1,676 ms
302,888 KB
testcase_28 AC 1,870 ms
294,104 KB
testcase_29 AC 2,618 ms
314,004 KB
testcase_30 AC 1,838 ms
310,928 KB
testcase_31 AC 2,111 ms
310,560 KB
testcase_32 AC 80 ms
71,544 KB
testcase_33 AC 1,281 ms
306,712 KB
testcase_34 AC 1,924 ms
290,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq

input = sys.stdin.readline

class mcf_graph:

    def __init__(self, n):
        self.n = n
        self.pos = []
        self.g = [[] for _ in range(n)]


    def add_edge(self, from_, to, cap, cost):
        # assert 0 <= from_ < self.n
        # assert 0 <= to < self.n
        m = len(self.pos)
        self.pos.append((from_, len(self.g[from_])))
        self.g[from_].append(self.__class__._edge(to, len(self.g[to]), cap, cost))
        self.g[to].append(self.__class__._edge(from_, len(self.g[from_]) - 1, 0, -cost))
        return m


    class edge:
        def __init__(self, from_, to, cap, flow, cost):
            self.from_ = from_
            self.to = to
            self.cap = cap
            self.flow = flow
            self.cost = cost


    def get_edge(self, i):
        _e = self.g[self.pos[i][0]][self.pos[i][1]]
        _re = self.g[_e.to][_e.rev]
        return self.__class__.edge(self.pos[i][0], _e.to, _e.cap + _re.cap, _re.cap, _e.cost)


    def edges(self):
        ret = []
        for i in range(len(self.pos)):
            _e = self.g[self.pos[i][0]][self.pos[i][1]]
            _re = self.g[_e.to][_e.rev]
            ret.append(self.__class__.edge(self.pos[i][0], _e.to, _e.cap + _re.cap, _re.cap, _e.cost))
        return ret


    def slope(self, s, t, flow_limit=float('inf')):
        # assert 0 <= s < self.n
        # assert 0 <= t < self.n
        # assert s != t
        
        dual = [0] * self.n
        dist = [float('inf')] * self.n
        pv = [-1] * self.n
        pe = [-1] * self.n
        vis = [False] * self.n

        def _dual_ref():
            nonlocal dual, dist, pv, pe, vis
            dist = [float('inf')] * self.n
            pv = [-1] * self.n
            pe = [-1] * self.n
            vis = [False] * self.n

            que = [(0, s)]
            dist[s] = 0
            while que:
                _, v = heapq.heappop(que)
                if vis[v]:
                    continue
                vis[v] = True
                if v == t:
                    break
                for i in range(len(self.g[v])):
                    e = self.g[v][i]
                    if vis[e.to] or e.cap == 0:
                        continue
                    cost = e.cost - dual[e.to] + dual[v]
                    if dist[e.to] > dist[v] + cost:
                        dist[e.to] = dist[v] + cost
                        pv[e.to] = v
                        pe[e.to] = i
                        heapq.heappush(que, (dist[e.to], e.to))
            if not vis[t]:
                return False

            for v in range(self.n):
                if not vis[v]:
                    continue
                dual[v] -= dist[t] - dist[v]
            
            return True

        flow = 0
        cost = 0
        prev_cost = -1
        result = [(flow, cost)]
        while flow < flow_limit:
            if not _dual_ref():
                break
            c = flow_limit - flow
            v = t
            while v != s:
                c = min(c, self.g[pv[v]][pe[v]].cap)
                v = pv[v]
            v = t
            while v != s:
                e = self.g[pv[v]][pe[v]]
                e.cap -= c
                self.g[v][e.rev].cap += c
                v = pv[v]
            d = -dual[s]
            flow += c
            cost += c * d
            if prev_cost == d:
                result.pop()
            result.append((flow, cost))
            prev_cost = cost
        return result


    def flow(self, s, t, flow_limit=float('inf')):
        return self.slope(s, t, flow_limit)[-1]

    
    class _edge:
        def __init__(self, to, rev, cap, cost):
            self.to = to
            self.rev = rev
            self.cap = cap
            self.cost = cost


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

g = mcf_graph(N + 2 * M)

for i in range(M):
    u, v, c, d = map(int, input().split())
    u -= 1
    v -= 1
    u2 = N + i
    v2 = N + M + i
    g.add_edge(u, u2, 2, 0)
    g.add_edge(v, u2, 2, 0)
    g.add_edge(u2, v2, 1, c)
    g.add_edge(u2, v2, 1, d)
    g.add_edge(v2, u, 2, 0)
    g.add_edge(v2, v, 2, 0)

print(g.flow(0, N - 1, 2)[1])
    
0