HOJ 2634 网络流 【蕴含式最大获利问题】

参考:http://wenku.baidu.com/link?url=ZO8hOpUlTb04rmoob64R-OohRZfyw-xv7cMdwKX-_RXsUKnExnJSxlYuEnnRqF3bR8hIYJuKjrgiN38cIBXjtNi_7y-FRy7rZRc_vGP9Bj_

【蕴含式最大获利问题】

#include
#include
#include
#include
using namespace std;
const int MAXN=210,inf=0x3f3f3f3f;
struct ISAP
{   struct Edge
    {
        int from,to,cap,flow;
        Edge(){}
        Edge(int a,int b,int c,int d):from(a),to(b),cap(c),flow(d){}
    };
    int n,m,s,t;//结点数,边数(含反向弧),源点,汇点
    vector edges;//边表,edges[e]&edges[e^1]互为反向弧
    vector G[MAXN];//邻接表,G[i][j]表示结点i的第j条边在e数组中的序号
    bool vis[MAXN];//BFS使用
    int d[MAXN];//从起点到i的距离
    int cur[MAXN];//当前弧下标
    int p[MAXN];//可增广路上的上一条弧
    int num[MAXN];//距离标号计数

    void AddEdge(int from,int to,int cap)//重边不影响
    {
        edges.push_back(Edge(from,to,cap,0));
        edges.push_back(Edge(to,from,0,0));//容量为0,表示反向弧
        m=edges.size();
        G[from].push_back(m-2);
        G[to].push_back(m-1);
    }

    void init(int n)
    {
        this->n=n;
        for(int i=0;i Q;
        Q.push(t);
        d[t]=0;
        vis[t]=1;
        while(!Q.empty())
        {
            int x=Q.front();
            Q.pop();
            for(int i=0; ie.flow)
                {
                    vis[e.from]=1;
                    d[e.from]=d[x]+1;
                    Q.push(e.from);
                }
            }
        }
    }

    int Augment()
    {
        int x=t,a=inf;
        while(x!=s)
        {
            Edge& e=edges[p[x]];
            a=min(a,e.cap-e.flow);
            x=edges[p[x]].from;
        }
        x=t;
        while(x!=s)
        {
            edges[p[x]].flow+=a;
            edges[p[x]^1].flow-=a;
            x=edges[p[x]].from;
        }
        return a;
    }

    int Maxflow(int s,int t)//结点数
    {
        this->s=s,this->t=t;
        int flow=0;
        BFS();
        memset(num,0,sizeof(num));
        for(int i=0;ie.flow&&d[x]==d[e.to]+1)//Advance
                {
                    ok=1;
                    p[e.to]=G[x][i];
                    cur[x]=i;
                    x=e.to;
                    break;
                }
            }
            if(!ok)//Retreat
            {
                int m=n-1;
                for(int i=0;ie.flow) m=min(m,d[e.to]);
                }
                if(--num[d[x]]==0) break;//gap优化
                num[d[x]=m+1]++;
                cur[x]=0;
                if(x!=s) x=edges[p[x]].from;
            }
        }
        return flow;
    }
    void dfs1(int x)
    {   vis[x]=1;
        for(int i=0;i g[MAXN];
    void solve(int y)
    {   for (int i=0;i


你可能感兴趣的:(【图论】_网络流&&二分图)