• HDU 4289 Control


    最小割

    一个点拆成两个 AddEdge(i,i+N,x);

    原图中的每条边这样连 AddEdge(u+N,v,INF); AddEdge(v+N,u,INF);

    S是源点,t+N是汇点。最大流就是答案。

    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cmath>
    #include<vector>
    #include<queue>
    #include<algorithm>
    using namespace std;
    
    
    const int maxn=1000+10;
    const int INF=0x7FFFFFFF;
    
    struct Edge
    {
        int from,to,cap,flow;
    };
    vector<Edge>edges;
    vector<int>G[maxn];
    bool vis[maxn];
    int d[maxn];
    int cur[maxn];
    int n,m,s,t;
    
    //求出层次网络
    bool BFS()
    {
        memset(vis,0,sizeof(vis));
        queue<int>Q;
        Q.push(s);
        d[s]=0;
        vis[s]=1;
        while(!Q.empty())
        {
            int x=Q.front();
            Q.pop();
            for(int i=0; i<G[x].size(); i++)
            {
                Edge& e=edges[G[x][i]];
                if(!vis[e.to]&&e.cap>e.flow)
                {
                    vis[e.to]=1;
                    d[e.to]=d[x]+1;
                    Q.push(e.to);
                }
            }
        }
        return vis[t];
    }
    
    
    //加边
    void AddEdge(int from,int to,int cap)
    {
        Edge r;
        r.from=from;
        r.to=to;
        r.cap=cap;
        r.flow=0;
        edges.push_back(r);
        Edge d;
        d.from=to;
        d.to=from;
        d.cap=0;
        d.flow=0;
        edges.push_back(d);
        m=edges.size();
        G[from].push_back(m-2);
        G[to].push_back(m-1);
    }
    
    //每个阶段来一次DFS增广
    int DFS(int x,int a)
    {
        if(x==t||a==0) return a;
        int flow=0,f;
        for(int i=cur[x]; i<G[x].size(); i++)
        {
            Edge& e=edges[G[x][i]];
            if(d[x]+1==d[e.to]&&(f=DFS(e.to,min(a,e.cap-e.flow)))>0)
            {
                e.flow+=f;
                edges[G[x][i]^1].flow-=f;
                flow+=f;
                a-=f;
                if(a==0) break;
            }
        }
        return flow;
    }
    
    //多个阶段,多次建立层次网络。
    int Maxflow(int ss,int tt)
    {
        int flow=0;
        while(BFS())
        {
            memset(cur,0,sizeof(cur));
            flow+=DFS(ss,INF);
        }
        return flow;
    }
    
    int N,M;
    int main()
    {
        while(~scanf("%d%d",&N,&M))
        {
            scanf("%d%d",&s,&t);
            s=s;
            t=t+N;
            edges.clear();
            for(int i=0; i<maxn; i++) G[i].clear();
            for(int i=1; i<=N; i++)
            {
                int x;
                scanf("%d",&x);
                AddEdge(i,i+N,x);
            }
            for(int i=1; i<=M; i++)
            {
                int u ,v;
                scanf("%d%d",&u,&v);
                AddEdge(u+N,v,INF);
                AddEdge(v+N,u,INF);
            }
            printf("%d
    ",Maxflow(s,t));
        }
        return 0;
    }
  • 相关阅读:
    DataTables: Cannot read property 'length' of undefined
    ssis SQL Server Integration Services
    科技爱好者周刊(第 209 期):程序员是怎样的人
    How do I remove the first characters of a specific column in a table?
    Define your Classic pipeline
    How does comparison operator works with null int?
    How to set Google Chrome custom proxy server settings independently from Internet Explorer proxy settings
    GetUniqueNodeName
    RK3399Pro 音频配置
    查看USB设备
  • 原文地址:https://www.cnblogs.com/zufezzt/p/4750188.html
Copyright © 2020-2023  润新知