HDU 6214 Smallest Minimum Cut 【网络流最小割+ 二种方法只能一种有效+hdu 3987原题】

Problem Description

Consider a network G=(V,E) with source s and sink t . An s-t cut is a partition of nodes set V into two parts such that s and t belong to different parts. The cut set is the subset of E with all edges connecting nodes in different parts. A minimum cut is the one whose cut set has the minimum summation of capacities. The size of a cut is the number of edges in the cut set. Please calculate the smallest size of all minimum cuts.
 
Input
The input contains several test cases and the first line is the total number of cases T (1T300) .
Each case describes a network G , and the first line contains two integers n (2n200) and m (0m1000) indicating the sizes of nodes and edges. All nodes in the network are labelled from 1 to n .
The second line contains two different integers s and t (1s,tn) corresponding to the source and sink.
Each of the next m lines contains three integers u,v and w (1w255) describing a directed edge from node u to v with capacity w .
 

Output

For each test case, output the smallest size of all minimum cuts in a line.
 

Sample Input

2 4 5 1 4 1 2 3 1 3 1 2 3 1 2 4 1 3 4 2 4 5 1 4 1 2 3 1 3 1 2 3 1 2 4 1 3 4 3
  Sample Output
2 3
 
Source
 
【题意】: 求最小割中最少的边数。
【代码】: 在建图时,每个边权乘以一个大的数E,然后加1,求出最大流后对E取模,就可以得到边数。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<sstream>
#include<cctype>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>
using namespace std;

typedef long long ll;
const double PI=acos(-1.0);
const double eps=1e-6;
const int INF=0x3f3f3f3f;
const int maxn=9876;

int T;
int n,m,s,t;
int ans,flag,tot;

int head[maxn],path[maxn],vis[maxn];

struct Edge
{
    int from,to;
    int cap;
    int next;
}e[maxn];

void init()
{
    tot=0;
    memset(head,-1,sizeof(head));
    memset(vis,0,sizeof(vis));
    memset(path,0,sizeof(path));
}

void add_edge(int u,int v,int w)
{
    e[tot].from=u;
    e[tot].to=v;
    e[tot].cap=w;
    e[tot].next=head[u];
    head[u]=tot++;
}

int bfs()
{
    queue<int>q;
    q.push(s);
    vis[s]=1;
    path[s]=-1;
    while(!q.empty())
    {
        int u=q.front();
        q.pop();
        for(int i=head[u];i!=-1;i=e[i].next)
        {
            int v=e[i].to;
            if(e[i].cap>0&&!vis[v])
            {
                path[v]=i;
                vis[v]=1;
                if(v==t)
                    return 1;
                q.push(v);
            }
        }
    }
    return 0;
}

int EK()
{
    int maxFlow=0;
    int flow,i;
    while(bfs())
    {
        memset(vis,0,sizeof(vis));
        i=path[t];
        flow=INF;
        while(i!=-1)
        {
            flow=min(flow,e[i].cap);
            i=path[e[i].from];
        }
        i=path[t];
        while(i!=-1)
        {
            e[i].cap-=flow;
            e[i^1].cap+=flow;
            i=path[e[i].from];
        }
        maxFlow+=flow;
    }
    return maxFlow;
}

int main()
{
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d",&n,&m);
        init();
        scanf("%d%d",&s,&t);
        for(int i=0;i<m;i++)
        {
            int a,b,c;
            scanf("%d%d%d",&a,&b,&c);
            add_edge(a,b,c*1000+1);
            add_edge(b,a,0);
        }
        printf("%d\n",EK()%1000);
    }
    return 0;
}
E  K

 

全部评论

相关推荐

叶扰云倾:进度更新,现在阿里云面完3面了,感觉3面答得还行,基本都答上了,自己熟悉的地方也说的比较细致,但感觉面试官有点心不在焉不知道是不是不想要我了,求阿里收留,我直接秒到岗当阿里孝子,学校那边的房子都退租了,下学期都不回学校,全职猛猛实习半年。这种条件还不诱人吗难道 然后现在约到了字节的一面和淘天的复活赛,外加猿辅导。华为笔试完没动静。 美团那边之前投了个base广州的,把我流程卡麻了,应该是不怎么招人,我直接简历挂了,现在进了一个正常的后端流程,还在筛选,不知道还有没有hc。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务