結果

問題 No.1678 Coin Trade (Multiple)
ユーザー 👑 tamatotamato
提出日時 2021-09-10 22:48:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,822 ms / 5,000 ms
コード長 5,728 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 87,340 KB
実行使用メモリ 247,680 KB
最終ジャッジ日時 2023-09-02 20:04:44
合計ジャッジ時間 36,051 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,368 KB
testcase_01 AC 75 ms
71,200 KB
testcase_02 AC 74 ms
71,536 KB
testcase_03 AC 415 ms
105,312 KB
testcase_04 AC 994 ms
171,492 KB
testcase_05 AC 628 ms
137,268 KB
testcase_06 AC 554 ms
129,036 KB
testcase_07 AC 877 ms
142,812 KB
testcase_08 AC 674 ms
126,740 KB
testcase_09 AC 645 ms
140,472 KB
testcase_10 AC 357 ms
91,220 KB
testcase_11 AC 838 ms
151,184 KB
testcase_12 AC 345 ms
92,564 KB
testcase_13 AC 1,578 ms
203,820 KB
testcase_14 AC 664 ms
121,920 KB
testcase_15 AC 701 ms
134,956 KB
testcase_16 AC 401 ms
112,924 KB
testcase_17 AC 672 ms
140,380 KB
testcase_18 AC 86 ms
76,720 KB
testcase_19 AC 77 ms
71,440 KB
testcase_20 AC 77 ms
71,356 KB
testcase_21 AC 77 ms
71,196 KB
testcase_22 AC 83 ms
76,356 KB
testcase_23 AC 76 ms
71,612 KB
testcase_24 AC 94 ms
75,832 KB
testcase_25 AC 78 ms
71,208 KB
testcase_26 AC 83 ms
75,580 KB
testcase_27 AC 78 ms
71,448 KB
testcase_28 AC 81 ms
76,272 KB
testcase_29 AC 79 ms
71,548 KB
testcase_30 AC 81 ms
75,712 KB
testcase_31 AC 76 ms
71,352 KB
testcase_32 AC 75 ms
71,208 KB
testcase_33 AC 88 ms
76,440 KB
testcase_34 AC 81 ms
71,580 KB
testcase_35 AC 80 ms
71,204 KB
testcase_36 AC 86 ms
76,060 KB
testcase_37 AC 84 ms
75,920 KB
testcase_38 AC 80 ms
71,508 KB
testcase_39 AC 80 ms
71,292 KB
testcase_40 AC 86 ms
76,236 KB
testcase_41 AC 84 ms
75,756 KB
testcase_42 AC 87 ms
75,776 KB
testcase_43 AC 89 ms
75,948 KB
testcase_44 AC 80 ms
71,368 KB
testcase_45 AC 77 ms
71,476 KB
testcase_46 AC 87 ms
76,000 KB
testcase_47 AC 79 ms
71,364 KB
testcase_48 AC 1,778 ms
247,680 KB
testcase_49 AC 1,691 ms
244,212 KB
testcase_50 AC 1,658 ms
236,132 KB
testcase_51 AC 1,794 ms
246,632 KB
testcase_52 AC 1,740 ms
244,652 KB
testcase_53 AC 1,733 ms
237,992 KB
testcase_54 AC 1,822 ms
238,712 KB
testcase_55 AC 1,766 ms
231,780 KB
testcase_56 AC 1,752 ms
244,916 KB
testcase_57 AC 1,713 ms
245,520 KB
testcase_58 AC 1,124 ms
173,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://atcoder.jp/contests/practice2/submissions/20652625
import heapq


class mcf_graph:

    def __init__(self, n):
        self.n = n
        self._edges = []

    def add_edge(self, from_, to, cap, cost):
        # assert 0 <= from_ < self.n
        # assert 0 <= to < self.n
        # assert 0 <= cap
        # assert 0 <= cost
        m = len(self._edges)
        self._edges.append(self.__class__.edge(from_, to, cap, 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):
        # m = len(self._edges)
        # assert 0 <= i < m
        return self._edges[i]

    def edges(self):
        return self._edges.copy()

    def _dual_ref(self, s, t):
        self.dist = [float('inf')] * self.n
        self.vis = [False] * self.n
        que_min = []
        que = []
        que_push_que = []
        self.dist[s] = 0
        que_min.append(s)
        while que_min or que or que_push_que:
            if que_min:
                v = que_min.pop()
            else:
                for e in que_push_que:
                    heapq.heappush(que, e)
                que_push_que.clear()
                _, v = heapq.heappop(que)
            if self.vis[v]:
                continue
            self.vis[v] = True
            if v == t:
                break
            dual_v = self.dual[v]
            dist_v = self.dist[v]
            for i in range(self.start[v], self.start[v + 1]):
                e = self.elist[i]
                if not e.cap:
                    continue
                cost = e.cost - self.dual[e.to] + dual_v
                if self.dist[e.to] - dist_v > cost:
                    dist_to = dist_v + cost
                    self.dist[e.to] = dist_to
                    self.prev_e[e.to] = e.rev
                    if dist_to == dist_v:
                        que_min.append(e.to)
                    else:
                        que_push_que.append((dist_to, e.to))
        if not self.vis[t]:
            return False

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

        return True

    def _csr(self):
        m = len(self._edges)
        self.edge_idx = [0] * m
        redge_idx = [0] * m
        degree = [0] * self.n
        edges = []
        for i, e in enumerate(self._edges):
            self.edge_idx[i] = degree[e.from_]
            degree[e.from_] += 1
            redge_idx[i] = degree[e.to]
            degree[e.to] += 1
            edges.append((e.from_, self.__class__._edge(
                e.to, -1, e.cap - e.flow, e.cost)))
            edges.append((e.to, self.__class__._edge(
                e.from_, -1, e.flow, -e.cost)))
        self.start = [0] * (self.n + 1)
        self.elist = [0] * len(edges)
        for v, w in edges:
            self.start[v + 1] += 1
        for i in range(1, self.n + 1):
            self.start[i] += self.start[i-1]
        counter = self.start.copy()
        for v, w in edges:
            self.elist[counter[v]] = w
            counter[v] += 1
        for i, e in enumerate(self._edges):
            self.edge_idx[i] += self.start[e.from_]
            redge_idx[i] += self.start[e.to]
            self.elist[self.edge_idx[i]].rev = redge_idx[i]
            self.elist[redge_idx[i]].rev = self.edge_idx[i]

    def slope(self, s, t, flow_limit=float('inf')):
        # assert 0 <= s < self.n
        # assert 0 <= t < self.n
        # assert s != t

        self._csr()

        self.dual = [0] * self.n
        self.dist = [float('inf')] * self.n
        self.prev_e = [0] * self.n
        self.vis = [False] * self.n

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

        for i in range(len(self._edges)):
            e = self.elist[self.edge_idx[i]]
            self._edges[i].flow = self._edges[i].cap - e.cap

        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


def main():
    BIG = 10 ** 9

    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())
    mcf = mcf_graph(N + 3)
    s = N + 2
    t = N + 1
    L = 10 ** 10
    mcf.add_edge(s, 1, K, L)
    A = [0] * (N + 1)
    for i in range(1, N + 1):
        a, M = map(int, input().split())
        A[i] = a
        B = list(map(int, input().split()))
        mcf.add_edge(i, i + 1, K, L)
        for b in B:
            if a - A[b] > 0:
                mcf.add_edge(b, i, 1, L * (i - b) - (a - A[b]))
    f = mcf.flow(s, t, K)
    print(L * (N + 1) * K - f[1])


if __name__ == "__main__":
    main()
0