首页 > usaco Pollutant Control

usaco Pollutant Control

第一问是求最小割。第二问求最小割中集合中边最少的集合的大小。

第三问求集合中边最少且字典序最小的边的下标。

第一问直接求最大流就能解,第二问将原来的边的容量都改为1,求出来的最大流就是元素最少的一个最小割的大小。

将容量都改为1之后,直接枚举每个边和前面已经找到的边在同一个集合中,是的话输出边的下标。

/*
ID: modengd1
PROG: milk6
LANG: C++
*/
#include 
#include 
#include 
#include 
#include 
using namespace std;
int N,M;
int level[33];
int input[33][33];
int inputC[33][33];
struct Edge
{int x,y,w;
};
vector Edges;
void BFS(int s)
{memset(level,-1,sizeof(level));level[s]=0;queue Q;Q.push(s);while(!Q.empty()){int now=Q.front();Q.pop();for(int i=1;i<=N;i++){if(input[now][i]&&level[i]<0){level[i]=level[now]+1;Q.push(i);}}}
}
int DFS(int s,int t,int f)
{if(s==t)return f;for(int i=1;i<=N;i++){if(input[s][i]&&level[i]==level[s]+1){int d=DFS(i,t,min(f,input[s][i]));if(d>0){input[s][i]-=d;input[i][s]+=d;return d;}}}return 0;
}
int max_flow(int s,int t)
{int flow=0;while(true){BFS(s);if(level[t]<0)return flow;int f;while((f=DFS(s,t,0x7fffffff))>0){flow+=f;}	}
}
int main()
{freopen("milk6.in","r",stdin);freopen("milk6.out","w",stdout);scanf("%d%d",&N,&M);memset(input,0,sizeof(input));for(int i=0;i

 

转载于:https://www.cnblogs.com/modengdubai/p/4867538.html

更多相关:

  •         Apache POI是一个开源的利用Java读写Excel,WORD等微软OLE2组件文档的项目。        我的需求是对Excel的数据进行导入或将数据以Excel的形式导出。先上简单的测试代码:package com.xing.studyTest.poi;import java.io.FileInputSt...

  • 要取得[a,b)的随机整数,使用(rand() % (b-a))+ a; 要取得[a,b]的随机整数,使用(rand() % (b-a+1))+ a; 要取得(a,b]的随机整数,使用(rand() % (b-a))+ a + 1; 通用公式:a + rand() % n;其中的a是起始值,n是整数的范围。 要取得a到b之间的...

  • 利用本征图像分解(Intrinsic Image Decomposition)算法,将图像分解为shading(illumination) image 和 reflectance(albedo) image,计算图像的reflectance image。 Reflectance Image 是指在变化的光照条件下能够维持不变的图像部分...

  • 题目:面试题39. 数组中出现次数超过一半的数字 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 输出: 2 限制: 1 <= 数组长度 <= 50000 解题: cl...

  • 题目:二叉搜索树的后序遍历序列 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。 参考以下这颗二叉搜索树:      5     /    2   6   /  1   3示例 1: 输入: [1,6,3,2,5] 输出...

  • 故事背景:有一天,强哥整了个动态渲染的列表代码如下 app.component.html

          //为什么不直接就用input,那是因为这样会覆盖checkbox和radio的样式,我们这里只需要清除输入框的谷歌样式 input[type="text"], input[type="password"], input[type="number"], input[type="tel"]{box-shadow:...