模板分享:网络最小费用流

Code

改自 jiangly 的模板,使用 Primal-Dual 算法.

cpp 复制代码
template<class Flow, class Cost>
struct MCFGraph {
    struct Edge {
        int v;
        Flow c;
        Cost f;
        Edge(int v, Flow c, Cost f) : v(v), c(c), f(f) {}
    };
    
    const int n;
    std::vector<Edge> e;
    std::vector<std::vector<int>> g;
    std::vector<Cost> h, dis;
    std::vector<int> pre;
    
    bool dijkstra(int s, int t) {
        dis.assign(n, std::numeric_limits<Cost>::max());
        pre.assign(n, -1);
        
        std::priority_queue<
            std::pair<Cost, int>, 
            std::vector<std::pair<Cost, int>>, 
            std::greater<std::pair<Cost, int>>
        > que;
        
        dis[s] = 0;
        que.emplace(0, s);
        
        while (!que.empty()) {
            Cost d = que.top().first;
            int u = que.top().second;
            que.pop();
            
            if (dis[u] < d) continue;
            for (int i : g[u]) {
                int v = e[i].v;
                Flow c = e[i].c;
                Cost f = e[i].f;
                if (c > 0 && dis[v] > d + h[u] - h[v] + f) {
                    dis[v] = d + h[u] - h[v] + f;
                    pre[v] = i;
                    que.emplace(dis[v], v);
                }
            }
        }
        return dis[t] != std::numeric_limits<Cost>::max();
    }

    MCFGraph(int n) : n(n), g(n) {}
    void addEdge(int u, int v, Flow c, Cost f) {
	    g[u].push_back(e.size());
	    e.emplace_back(v, c, f);
	    g[v].push_back(e.size());
	    e.emplace_back(u, 0, -f);
	}

    std::pair<Flow, Cost> flow(int s, int t) {
        Flow flow = 0;
        Cost cost = 0;
        h.assign(n, 0);
        
        while (dijkstra(s, t)) {
            for (int i = 0; i < n; ++i) h[i] += dis[i];
            Flow aug = std::numeric_limits<Flow>::max();
            for (int i = t; i != s; i = e[pre[i] ^ 1].v) aug = std::min(aug, e[pre[i]].c);
            for (int i = t; i != s; i = e[pre[i] ^ 1].v) {
                e[pre[i]].c -= aug;
                e[pre[i] ^ 1].c += aug;
            }
            flow += aug;
            cost += h[t] * aug;
        }
        return std::make_pair(flow, cost);
    }
};

Usage

cpp 复制代码
MCFGraph<Flow, Cost>::MCFGraph(int n);

创建一个网络图,有 n n n 个点,没有弧,容量类型为 Flow,费用类型为 Cost(只支持整数)

cpp 复制代码
void MCFGraph<Flow, Cost>::addEdge(int u, int v, Flow c, Cost f);

在图中加入一条 u → v u\to v u→v,流量为 c c c ,单位流量费用为 f f f 的有向弧.
0 ≤ u , v < n 0\le u,v< n 0≤u,v<n, c c c 不超过 Flow 的范围, f f f 不超过 Cost 的范围.

cpp 复制代码
pair<Flow, Cost> MCFGraph<Flow, Cost>::flow(int s, int t);

求出 s s s 到 t t t 的最小费用最大流(图会变为残量网络)

需要保证 firstsecondFlowCost 范围内.
0 ≤ s , t < n 0\le s,t< n 0≤s,t<n

注意:不支持一边跑 flow 一边加弧.

相关推荐
To_OC8 小时前
LC 207 课程表:刚学图论那会儿,我连这是拓扑排序都没看出来
javascript·算法·leetcode
To_OC8 小时前
LC 208 实现 Trie 前缀树:曾被名字劝退,写完发现是送分题
javascript·算法·leetcode
BadBadBad__AK10 小时前
线段树维护区间 k 次方和
c++·数学·算法·stl
卷无止境1 天前
Eigen 库如何借助 OpenMP 加速计算
c++·后端
_清歌1 天前
DSpark 深度解读:DeepSeek-V4 如何用「半自回归」把推理速度提升 85%
算法
统计实现局1 天前
SVD 的三步走:双对角化、Givens 收敛、排序
算法
躬行见万象1 天前
《VLA 系列》UniLab 强化训练 | G1 机器人 |复现
算法
统计实现局1 天前
对称不定分解(Bunch-Kaufman):为什么 Cholesky 不够用
算法
统计实现局1 天前
dqrsl 拆解:拿着 QR 结果能算出哪 5 种东西
算法