博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj 2039 [2009国家集训队]employ人员雇佣 最小割建图
阅读量:5310 次
发布时间:2019-06-14

本文共 2303 字,大约阅读时间需要 7 分钟。

题面

解法

\(ans\) = 所有的收益 - \(i\)属于\(S\)割的(雇佣\(i\)的代价) - 不能同时雇佣\(i,j\)的带价(\(i\)属于\(S\)割,\(j\)属于T割) - 不雇佣\(i\)所造成的带价也就是\(i\)所有的贡献(\(i\)属于\(T\)割)

那么建图也就出来了:\(S\rightarrow i\)\(a_i\)\(i\rightarrow j\)\(E_{i,j}\)\(i\rightarrow T\)\(i\)的所有贡献

答案就是所有的贡献和减去最小割。

注意要加当前弧优化

代码

#include 
#define N 2010using namespace std;template
void read(node &x) { x = 0; int f = 1; char c = getchar(); while (!isdigit(c)) {if (c == '-') f = -1; c = getchar();} while (isdigit(c)) x = x * 10 + c - '0', c = getchar(); x *= f;}struct Edge { int next, num, c;} e[N * N];int s, t, cnt, a[N], sum[N], l[N], cur[N], v[N][N];void add(int x, int y, int c) { e[++cnt] = (Edge) {e[x].next, y, c}; e[x].next = cnt;}void Add(int x, int y, int c) { add(x, y, c), add(y, x, 0);}bool bfs(int s) { for (int i = 1; i <= t; i++) l[i] = -1; queue
q; q.push(s); while (!q.empty()) { int x = q.front(); q.pop(); for (int p = e[x].next; p; p = e[p].next) { int k = e[p].num, c = e[p].c; if (c && l[k] == -1) l[k] = l[x] + 1, q.push(k); } } return l[t] != -1;}int dfs(int x, int lim) { if (x == t) return lim; int used = 0; for (int p = cur[x]; p; p = e[p].next) { int k = e[p].num, c = e[p].c; if (l[k] == l[x] + 1 && c) { int w = dfs(k, min(c, lim - used)); e[p].c -= w, e[p ^ 1].c += w; if (e[p].c) cur[x] = p; used += w; if (used == lim) return used; } } if (!used) l[x] = -1; return used;}int dinic() { int ret = 0; while (bfs(s)) { for (int i = s; i <= t; i++) cur[i] = e[i].next; ret += dfs(s, INT_MAX); } return ret;}int main() { int n, ans = 0; read(n); for (int i = 1; i <= n; i++) read(a[i]); for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) read(v[i][j]), sum[i] += v[i][j], ans += v[i][j]; s = 0, t = cnt = n + 1; if (cnt % 2 == 0) cnt++; for (int i = 1; i <= n; i++) Add(s, i, a[i]), Add(i, t, sum[i]); for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) Add(i, j, v[i][j] * 2); cout << ans - dinic() << "\n"; return 0;}

转载于:https://www.cnblogs.com/copperoxide/p/9478725.html

你可能感兴趣的文章
Quartus II 中常见Warning 原因及解决方法
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>