【网络流专题4】 最小点权覆盖集

Ahead

11.1.2018

例题

poj 2125

题意为选取一些点使得覆盖所有的边

仍然是最小割与割点,对于每一条边的两个点,从源点向每个点连一条删除从这个点出发的所有边的权值 即W- ,同理对每一个点向汇点连W+ 中间部分为图的边关系。

然后最大流即可

针对方案需要进行一次深搜,对于与源点连接的点,如果不能被访问到,那么一定是割去的,对于与汇点相连的如果被访问到那么一定是割去的

代码

#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;

const int s = 1000,t = 1001;
const int N = 40000,inf = 0x3f3f3f3f;
int n,m;

int to[N<<1],nxt[N<<1],last[N],w[N<<1],len=1;
inline void ins(int x,int y,int c)
{
  to[++len]=y,nxt[len]=last[x],w[len]=c,last[x]=len;
}

int h[N];
bool vis[N];
bool bfs()
{
  memset(h,0,sizeof(h));
  queue <int> q;
  vis[s]=1;
  q.push(s);
  h[s]=1;
  while(!q.empty())
  {
    int x = q.front();
    q.pop();
    vis[x]=0;
    for(int k=last[x]; k; k=nxt[k])
    {
      int y=to[k];
      if(w[k] && !h[y])
      {
        h[y] = h[x] + 1 ;
        if(!vis[y])
        {
          vis[y]=1;
          q.push(y);
        }
      }
    }
  }
  return h[t]!=0;
}

int dfs(int x,int flow)
{
  if(x==t) return flow;
  int res=flow;
  for(int k=last[x]; k; k=nxt[k])
  {
    int y=to[k];
    if(w[k] && h[y] == h[x]+1)
    {
      int t = dfs(y,min(w[k],res));
      w[k]-=t;
      w[k^1]+=t;
      res-=t;
      if(res==0) break;
    }
  }
  if(res==flow) h[x]=0;
  return flow-res;
}

inline int dinic()
{
  int maxflow=0;
  while(bfs())
  {
    int tmp = dfs(s,inf);
    while(tmp)
    {
      maxflow += tmp;
      tmp = dfs(s,inf);
    }
  }
  return maxflow;
}

bool ok[N];
void DFS(int x)
{
  ok[x]=1;
  for(int k=last[x]; k; k=nxt[k])
  {
    int y=to[k];
    if(!ok[y] && w[k]) DFS(y);
  }
}

int main()
{
  int x,y,z;
  scanf("%d%d",&n,&m);
  for(int i=1; i<=n; ++i)
  {
    scanf("%d",&z);
    ins(i+n,t,z),ins(t,i+n,0);
  }
  for(int i=1; i<=n; ++i)
  {
    scanf("%d",&z);
    ins(s,i,z),ins(i,s,0);
  }

  for(int i=1; i<=m; ++i)
  {
    scanf("%d%d",&x,&y);
    ins(x,y+n,inf),ins(y+n,x,0);
  }
  printf("%d\n",dinic());

  int res=0;
  DFS(s);
  for(int i = 1; i <= n; i++)
  {
    if(!ok[i])
      res++;
    if(ok[i + n])
      res++;
  }
  printf("%d\n", res);
  for(int i = 1; i <= n; i++)
  {
    if(!ok[i])
      printf("%d -\n", i);
    if(ok[i+n])
      printf("%d +\n", i);
  }
  return 0;
}

原文地址:https://www.cnblogs.com/PiCaHor/p/9889978.html

时间: 2024-10-11 03:25:10

【网络流专题4】 最小点权覆盖集的相关文章

POJ2125 Destroying The Graph (最小点权覆盖集)(网络流最小割)

Destroying The Graph Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 8158   Accepted: 2620   Special Judge Description Alice and Bob play the following game. First, Alice draws some directed graph with N vertices and M arcs. After that B

HLG1407Leyni的游戏【最小点权覆盖集】

大意: 给你一个n行m列的矩阵 1 2 1 1 每次操作可使一整行或一整列的一个数减少1(如果是0则不变) 问最少多少次操作会使所有的数变为零 分析: 该题很像poj消灭外星人的那道题 思路也差不很多 将x轴当左集合,y轴当右集合,边权值为所在点的数字 那么一条边就代表了矩阵中的一个点 只要找出最小的权值去覆盖所有的边就能把所有的数字变为零 也就是传说中的最小点权覆盖集 最小点权覆盖集 = 最大权匹配 KM跑一遍就可以了 但是需要注意的是如果两边点的个数不相等 那么我们用虚拟点代替就可以了 代码

HDU 1569 - 方格取数(2) - [最大点权独立集与最小点权覆盖集]

嗯,这是关于最大点权独立集与最小点权覆盖集的姿势,很简单对吧,然后开始看题. HDU1569: Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Problem Description 给你一个m*n的格子的棋盘,每个格子里面有一个非负数.从中取出若干个数,使得任意的两个数所在的格子没有公共边,就是说所取数所在的2个格子不能相邻,并且取出的数的和最大. Input 包括多个测试实例,

【网络流】【最小点权覆盖】【NEERC 2003】【POJ2125】【cogs 1575】有向图破坏

1575. [NEERC 2003][POJ2125]有向图破坏 ★★★ 输入文件:destroyingthegraph.in 输出文件:destroyingthegraph.out 简单对比 时间限制:1 s 内存限制:256 MB [题目描述] Alice和Bob正在玩如下的游戏.首先Alice画一个有N个顶点,M条边的有向图.然后Bob试着摧毁它.在一次操作中他可以找到图中的一个点,并且删除它所有的入边或所有的出边. Alice给每个点定义了两个值:Wi+和Wi-.如果Bob删除了第i个点

poj 2125 Destroying The Graph 最小点权覆盖集+拆点+求割边

Destroying The Graph Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7570   Accepted: 2423   Special Judge Description Alice and Bob play the following game. First, Alice draws some directed graph with N vertices and M arcs. After that B

图论(网络流,二分图最小点权覆盖):POJ 2125 Destroying The Graph

Destroying The Graph Description Alice and Bob play the following game. First, Alice draws some directed graph with N vertices and M arcs. After that Bob tries to destroy it. In a move he may take any vertex of the graph and remove either all arcs in

POJ 2125 --Destroying The Graph【最小割解决 &quot;最小点权覆盖问题&quot; &amp;&amp; 输出解(割边集) &amp;&amp; 各种不懂】

Destroying The Graph Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7597   Accepted: 2434   Special Judge Description Alice and Bob play the following game. First, Alice draws some directed graph with N vertices and M arcs. After that B

POJ3308 Paratroopers(最小割/最小点权覆盖)

把入侵者看作边,每一行每一列都是点,选取某一行某一列都有费用,这样问题就是选总权最小的点集覆盖所有边,就是最小点权覆盖. 此外,题目的总花费是所有费用的乘积,这时有个技巧,就是取对数,把乘法变为加法运算,最后再还原. 另外还可以从最小割的思路去这么理解: 每一行与源点相连,容量为该行的花费:每一列与汇点相连,容量为该列的花费:对于每个入侵者的坐标,该行该列连接一条容量INF的边. 要让源点汇点不连通,割边集必然与所有入侵者的行或列相关,而这样建模后的最小割就是最小的花费(容量INF的边必然不是最

二分图最小点权覆盖 二分图最大权独立集 方格取数 最小割

二分图最小点权覆盖: 每一条边 (u, v) 都是一个限制条件, 要求 u 和 v 不能同时取得. 我们考虑先取得所有的, 然后减去最小的点权. 建立原点 S , 连向二分图左边的所有点, 与 S 连通的意义是左边的点被选择了, 或者右边的点没有被选择. 建立汇点 T , 二分图右边的所有点连向它, 与 T 连通的意义是左边的点没有被选择, 或者右边的点被选择了. 利用最小割最大流定理, 我们跑最大流, 再根据最后一次 BFS 得出的情报构造方案. 定理 覆盖集与独立集互补. 证明 即证明覆盖集