UVA 1212 Duopoly
题目:
两个公司进行投标,竞争一些channels,每个投标可以包含多个channels,且都有一定的收益,每一个channels只能为其中的一个公司利用,同时保证一个公司给出的投标中选中的channels不会冲突,求出两公司收益总和的最大值。最多有300000个channels,每个投标最多包含32个channels,每个公司最多有3000个投标。
分析:
将每一个投标当成一个结点,A公司的与源点连接,流量为其价值,B公司的与汇点连接,流量亦为其价值,对于A、B公司的投标中有冲突的连一条边,流量为正无穷。最后求出这张图的最小割(即为最大流),表示解决冲突要的最小费用(即被浪费的价值最小),用总价值减去最大流即可。
代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <map>
#include <queue>
#include <cstdlib>
#include <string>
using namespace std;
#define INF 0x3f3f3f3f
const int maxn=1e4;
int d[maxn];
int C[maxn][40];
int lenc[maxn];
string ch;
bool use[300050];
struct Edge
{
int from,to,cap,flow;
};
bool cmp(const Edge& a,const Edge& b)
{
return a.from < b.from || (a.from == b.from && a.to < b.to);
}
struct Dinic
{
int n,m,s,t;
vector<Edge>edges;
vector<int>G[maxn];
bool vis[maxn];
int d[maxn];
int cur[maxn];
void init(int n)
{
this->n=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);
}
bool BFS()
{
memset(vis,0,sizeof(vis));
queue<int> Q;
Q.push(s);
d[s]=0;
vis[s]=1;
while(!Q.empty())
{
int x=Q.front();
Q.pop();
for(int i=0;i<G[x].size();i++)
{
Edge& e=edges[G[x][i]];