[最大流]UVa11082

思想完全是紫书上的思想

模板并不能很好的理解

还需要花时间好好理解

#include<bits/stdc++.h>
using namespace std;
const int maxn = 50 + 5;
const int INF = 0x7f7f7f7f;
struct Edge{
    int from,to,cap,flow;
    Edge(int u=0,int v=0 ,int c=0,int f=0): from(u),to(v),cap(c),flow(f){}
};
struct EdmondsKarp{
    int n,m;
    vector<Edge> edges;
    vector<int> G[maxn];
    int a[maxn];
    int p[maxn];

    void Init(int n){
        for(int i=0;i<n;i++) G[i].clear();
        edges.clear();
    }

    void AddEdge(int from,int to,int cap){
        edges.push_back(Edge(from,to,cap,0));
        edges.push_back(Edge(to,from,0,0));
        m=edges.size();
        G[from].push_back(m-2);
        G[to].push_back(m-1);
    }

    int MaxFlow(int s,int t){
        int flow=0;
        for(;;){
            memset(a,0,sizeof(a));
            queue<int> Q;
            Q.push(s);
            a[s]=INF;
            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(!a[e.to]&&e.cap>e.flow){
                        a[e.to]=min(a[x],e.cap-e.flow);
                        p[e.to]=G[x][i];
                        Q.push(e.to);
                    }
                }
                if(a[t]) break;
            }
            if(!a[t]) break;
            for(int u=t;u!=s;u=edges[ p[u] ].from){
                edges[ p[u] ].flow+=a[t];
                edges[ p[u]^1 ].flow -= a[t];
            }
            flow += a[t];
        }
        return flow;
    }
};
EdmondsKarp g;
int ind[maxn][maxn];
int main()
{
    int T,R,C;
    scanf("%d",&T);
    for(int kase=1;kase<=T;kase++){
        scanf("%d%d",&R,&C);
        g.Init(R+C+2);
        int cur,last=0;
        for(int i=1;i<=R;i++){
            scanf("%d",&cur);
            g.AddEdge(0,i,cur-last-C);
            last=cur;
        }
        last=0;
        for(int i=1;i<=C;i++){
            scanf("%d",&cur);
            g.AddEdge(R+i,R+C+1,cur-last-R);
            last=cur;
        }
        for(int i=1;i<=R;i++){
            for(int j=1;j<=C;j++)
            {
                g.AddEdge(i,j+R,19);
                ind[i][j]=g.edges.size()-2;
            }

        }
        g.MaxFlow(0,R+C+1);
        printf("Matrix %d\n",kase);
        for(int i=1;i<=R;i++){
            printf("%d",g.edges[ ind[i][1] ].flow+1);
            for(int j=2;j<=C;j++)
                printf(" %d",g.edges[ ind[i][j] ].flow+1);
            printf("\n");
        }
        printf("\n");

    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值