zoukankan      html  css  js  c++  java
  • [P4016] 负载平衡问题

    [P4016] 负载平衡问题

    Description

    (n le 100) 个沿铁路运输线环形排列的仓库,每个仓库存储的货物数量不等。如何用最少搬运量可以使 n 个仓库的库存数量相同。搬运货物时,只能在相邻的仓库之间搬运。

    Solution

    费用流模型,每个仓库建一个点,各个仓库之间相互连边,费用为 1,仓库与源连边,流量按照题意设定,仓库与汇点连边,流量是最终的平均流量。

    #include <bits/stdc++.h>
    using namespace std;
    
    #define int long long
    
    #ifndef __FLOW_HPP__
    #define __FLOW_HPP__
    
    // v1.1     feat. edge query for Maxf
    
    #include <bits/stdc++.h>
    using namespace std;
    #define int long long
    
    namespace flowsolution
    {
        const int N = 100005;
        const int M = 1000005;
        const int inf = 1e+12;
    
        struct MaxflowSolution
        {
            int *dis, ans, cnt = 1, s, t, *pre, *next, *head, *val;
    
            MaxflowSolution()
            {
                cnt = 1;
                dis = new int[N];
                pre = new int[M];
                next = new int[M];
                head = new int[N];
                val = new int[M];
                fill(dis, dis + N, 0);
                fill(pre, pre + M, 0);
                fill(next, next + M, 0);
                fill(head, head + N, 0);
                fill(val, val + M, 0);
            }
    
            ~MaxflowSolution()
            {
                delete[] dis;
                delete[] pre;
                delete[] next;
                delete[] head;
                delete[] val;
            }
    
            std::queue<int> q;
            int make(int x, int y, int z)
            {
                pre[++cnt] = y, next[cnt] = head[x], head[x] = cnt, val[cnt] = z;
                int ret = cnt;
                pre[++cnt] = x, next[cnt] = head[y], head[y] = cnt;
                return ret;
            }
    
            int get_value(int x)
            {
                return val[x];
            }
    
            bool bfs()
            {
                fill(dis, dis + N, 0);
                q.push(s), dis[s] = 1;
                while (!q.empty())
                {
                    int x = q.front();
                    q.pop();
                    for (int i = head[x]; i; i = next[i])
                        if (!dis[pre[i]] && val[i])
                            dis[pre[i]] = dis[x] + 1, q.push(pre[i]);
                }
                return dis[t];
            }
    
            int dfs(int x, int flow)
            {
                if (x == t || !flow)
                    return flow;
                int f = flow;
                for (int i = head[x]; i; i = next[i])
                    if (val[i] && dis[pre[i]] > dis[x])
                    {
                        int y = dfs(pre[i], min(val[i], f));
                        f -= y, val[i] -= y, val[i ^ 1] += y;
                        if (!f)
                            return flow;
                    }
                if (f == flow)
                    dis[x] = -1;
                return flow - f;
            }
    
            int solve(int _s, int _t)
            {
                s = _s;
                t = _t;
                ans = 0;
                for (; bfs(); ans += dfs(s, inf))
                    ;
                return ans;
            }
        };
    
        struct CostflowSolution
        {
            struct Edge
            {
                int p = 0, c = 0, w = 0, next = -1;
            } * e;
            int s, t, tans, ans, cost, ind, *bus, qhead = 0, qtail = -1, *qu, *vis, *dist;
    
            CostflowSolution()
            {
                e = new Edge[M];
                qu = new int[M];
                bus = new int[N];
                vis = new int[N];
                dist = new int[N];
                fill(qu, qu + M, 0);
                fill(bus, bus + N, -1);
                fill(vis, vis + N, 0);
                fill(dist, dist + N, 0);
                ind = 0;
            }
    
            ~CostflowSolution()
            {
                delete[] e;
                delete[] qu;
                delete[] vis;
                delete[] dist;
            }
    
            void graph_link(int p, int q, int c, int w)
            {
                e[ind].p = q;
                e[ind].c = c;
                e[ind].w = w;
                e[ind].next = bus[p];
                bus[p] = ind;
                ++ind;
            }
    
            void make(int p, int q, int c, int w)
            {
                graph_link(p, q, c, w);
                graph_link(q, p, 0, -w);
            }
    
            int dinic_spfa()
            {
                qhead = 0;
                qtail = -1;
                fill(vis, vis + N, 0);
                fill(dist, dist + N, inf);
                vis[s] = 1;
                dist[s] = 0;
                qu[++qtail] = s;
                while (qtail >= qhead)
                {
                    int p = qu[qhead++];
                    vis[p] = 0;
                    for (int i = bus[p]; i != -1; i = e[i].next)
                        if (dist[e[i].p] > dist[p] + e[i].w && e[i].c > 0)
                        {
                            dist[e[i].p] = dist[p] + e[i].w;
                            if (vis[e[i].p] == 0)
                                vis[e[i].p] = 1, qu[++qtail] = e[i].p;
                        }
                }
                return dist[t] < inf;
            }
    
            int dinic_dfs(int p, int lim)
            {
                if (p == t)
                    return lim;
                vis[p] = 1;
                int ret = 0;
                for (int i = bus[p]; i != -1; i = e[i].next)
                {
                    int q = e[i].p;
                    if (e[i].c > 0 && dist[q] == dist[p] + e[i].w && vis[q] == 0)
                    {
                        int res = dinic_dfs(q, min(lim, e[i].c));
                        cost += res * e[i].w;
                        e[i].c -= res;
                        e[i ^ 1].c += res;
                        ret += res;
                        lim -= res;
                        if (lim == 0)
                            break;
                    }
                }
                return ret;
            }
    
            pair<int, int> solve(int _s, int _t)
            {
                s = _s;
                t = _t;
                ans = 0;
                cost = 0;
                while (dinic_spfa())
                {
                    fill(vis, vis + N, 0);
                    ans += dinic_dfs(s, inf);
                }
                return make_pair(ans, cost);
            }
        };
    } // namespace flowsolution
    
    #endif
    
    signed main()
    {
        ios::sync_with_stdio(false);
        int n;
        cin >> n;
    
        vector<int> a(n + 2);
        int sum = 0;
        for (int i = 1; i <= n; i++)
        {
            cin >> a[i];
            sum += a[i];
        }
    
        sum /= n;
    
        int s = n + 1, t = n + 2;
        flowsolution::CostflowSolution flow;
        for (int i = 1; i <= n; i++)
        {
            flow.make(s, i, a[i], 0);
            flow.make(i, t, sum, 0);
            flow.make(i, i == n ? 1 : i + 1, 1e9, 1);
            flow.make(i == n ? 1 : i + 1, i, 1e9, 1);
        }
    
        auto [ans, cost] = flow.solve(s, t);
        cout << cost << endl;
    }
    
  • 相关阅读:
    Python批量获取京东商品列表信息
    AxureRP8.1(注册码)破解汉化教程
    sp_getAppLock使用[转]
    rebar3 escriptize
    三层次解析模型(其二):是何、为何、如何
    三层次解析模型(其一):无限、绝对、完美
    wpf项目引入System.Windows.Forms报错
    idea 批量修改
    Android studio 模拟器无法联网问题
    git
  • 原文地址:https://www.cnblogs.com/mollnn/p/14351840.html
Copyright © 2011-2022 走看看