题意:给定n个带权点m条无向带权边,选一个子图,则这个子图的权值为 边权和-点权和,求一个最大的权值。

析:把每条边都看成是一个新点,然后建图,就是一个裸的最大闭合子图。

代码如下:

  1. #pragma comment(linker, "/STACK:1024000000,1024000000")
  2. #include <cstdio>
  3. #include <string>
  4. #include <cstdlib>
  5. #include <cmath>
  6. #include <iostream>
  7. #include <cstring>
  8. #include <set>
  9. #include <queue>
  10. #include <algorithm>
  11. #include <vector>
  12. #include <map>
  13. #include <cctype>
  14. #include <cmath>
  15. #include <stack>
  16. #include <sstream>
  17. #include <list>
  18. #include <assert.h>
  19. #include <bitset>
  20. #define debug() puts("++++");
  21. #define gcd(a, b) __gcd(a, b)
  22. #define lson l,m,rt<<1
  23. #define rson m+1,r,rt<<1|1
  24. #define fi first
  25. #define se second
  26. #define pb push_back
  27. #define sqr(x) ((x)*(x))
  28. #define ms(a,b) memset(a, b, sizeof a)
  29. #define sz size()
  30. #define pu push_up
  31. #define pd push_down
  32. #define cl clear()
  33. #define all 1,n,1
  34. #define FOR(i,x,n) for(int i = (x); i < (n); ++i)
  35. #define freopenr freopen("in.txt", "r", stdin)
  36. #define freopenw freopen("out.txt", "w", stdout)
  37. using namespace std;
  38.  
  39. typedef long long LL;
  40. typedef unsigned long long ULL;
  41. typedef pair<LL, int> P;
  42. const int INF = 0x3f3f3f3f;
  43. const LL LNF = 1e17;
  44. const double inf = 1e20;
  45. const double PI = acos(-1.0);
  46. const double eps = 1e-8;
  47. const int maxn = 55000 + 50;
  48. const int maxm = 1e6 + 5;
  49. const int mod = 10007;
  50. const int dr[] = {-1, 0, 1, 0};
  51. const int dc[] = {0, -1, 0, 1};
  52. const char *de[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
  53. int n, m;
  54. const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  55. const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  56. inline bool is_in(int r, int c) {
  57. return r >= 0 && r < n && c >= 0 && c < m;
  58. }
  59.  
  60. struct Edge{
  61. int from, to, cap, flow;
  62. };
  63. struct Dinic{
  64. int n, m, s, t;
  65. vector<Edge> edges;
  66. vector<int> G[maxn];
  67. bool vis[maxn];
  68. int d[maxn];
  69. int cur[maxn];
  70.  
  71. void init(int n){
  72. this->n = n;
  73. for(int i = 0; i < n; ++i) G[i].cl;
  74. edges.cl;
  75. }
  76.  
  77. void addEdge(int from, int to, int c){
  78. edges.pb((Edge){from, to, c, 0});
  79. edges.pb((Edge){to, from, 0, 0});
  80. m = edges.sz;
  81. G[from].pb(m - 2);
  82. G[to].pb(m - 1);
  83. }
  84.  
  85. bool bfs(){
  86. ms(vis, 0); vis[s] = 1; d[s] = 0;
  87. queue<int> q;
  88. q.push(s);
  89.  
  90. while(!q.empty()){
  91. int u = q.front(); q.pop();
  92. for(int i = 0; i < G[u].sz; ++i){
  93. Edge &e = edges[G[u][i]];
  94. if(!vis[e.to] && e.cap > e.flow){
  95. d[e.to] = d[u] + 1;
  96. vis[e.to] = 1;
  97. q.push(e.to);
  98. }
  99. }
  100. }
  101. return vis[t];
  102. }
  103.  
  104. int dfs(int u, int a){
  105. if(u == t || a == 0) return a;
  106. int flow = 0, f;
  107. for(int &i = cur[u]; i < G[u].sz; ++i){
  108. Edge &e = edges[G[u][i]];
  109. if(d[e.to] == d[u] + 1 && (f = dfs(e.to, min(a, e.cap - e.flow))) > 0){
  110. e.flow += f;
  111. edges[G[u][i]^1].flow -= f;
  112. flow += f;
  113. a -= f;
  114. if(a == 0) break;
  115. }
  116. }
  117. return flow;
  118. }
  119.  
  120. int maxflow(int s, int t){
  121. this->s = s; this->t = t;
  122. int flow = 0;
  123. while(bfs()){ ms(cur, 0); flow += dfs(s, INF); }
  124. return flow;
  125. }
  126. };
  127.  
  128. Dinic dinic;
  129.  
  130. int main(){
  131. while(scanf("%d %d", &n, &m) == 2){
  132. int s = 0, t = n + m + 1;
  133. dinic.init(t + 5);
  134. for(int i = 1; i <= n; ++i){
  135. int c; scanf("%d", &c);
  136. dinic.addEdge(i, t, c);
  137. }
  138. int sum = 0;
  139. for(int i = 1; i <= m; ++i){
  140. int u, v, c;
  141. scanf("%d %d %d", &u, &v, &c);
  142. dinic.addEdge(n + i, u, INF);
  143. dinic.addEdge(n + i, v, INF);
  144. dinic.addEdge(s, n + i, c);
  145. sum += c;
  146. }
  147. printf("%d\n", sum - dinic.maxflow(s, t));
  148. }
  149. return 0;
  150. }

  

HDU 3897 Base Station (网络流,最大闭合子图)的更多相关文章

  1. HDU 3879 Base Station(最大权闭合子图)

    将第i个用户和他需要的基站连边,转化成求二分图的最大权闭合子图. 答案=正权点之和-最小割. # include <cstdio> # include <cstring> # ...

  2. hdu3879 Base Station 最大权闭合子图 边权有正有负

    /** 题目:hdu3879 Base Station 最大权闭合子图 边权有正有负 链接:http://acm.hdu.edu.cn/showproblem.php?pid=3879 题意:给出n个 ...

  3. hdu 3879 Base Station 最大权闭合图

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3879 A famous mobile communication company is plannin ...

  4. HDU 3879 Base Station(最大权闭合子图)

    经典例题,好像说可以转化成maxflow(n,n+m),暂时只可以勉强理解maxflow(n+m,n+m)的做法. 题意:输入n个点,m条边的无向图.点权为负,边权为正,点权为代价,边权为获益,输出最 ...

  5. HDU 3879 Base Station

    Base Station Time Limit: 2000ms Memory Limit: 32768KB This problem will be judged on HDU. Original I ...

  6. hdu 5772 String problem 最大权闭合子图

    String problem 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5772 Description This is a simple pro ...

  7. hdu 3917 Road constructions 最大权闭合子图

    样例说明: n(城市数目)   m(工程队数目) 每个工程队上交的税收 val[i] k(k个工程) xi   yi  ci  costi , 工程队ci承包由xi到yi,政府的补贴为costi 注意 ...

  8. BZOJ 4873 [Shoi2017]寿司餐厅 | 网络流 最大权闭合子图

    链接 BZOJ 4873 题解 当年的省选题--还记得蒟蒻的我Day1 20分滚粗-- 这道题是个最大权闭合子图的套路题.严重怀疑出题人就是先画好了图然后照着图编了个3000字的题面.和我喜欢的妹子当 ...

  9. [BZOJ1565][NOI2009]植物大战僵尸-[网络流-最小割+最大点权闭合子图+拓扑排序]

    Description 传送门 Solution em本题知识点是用网络流求最大点权闭合子图. 闭合图定义:图中任何一个点u,若有边u->v,则v必定也在图中. 建图:运用最小割思想,将S向点权 ...

随机推荐

  1. Redis基本操作-list

    Redis的5种数据结构:string.list.hash.set和zset; Redis 所有的数据结构都是以唯一的 key 字符串作为名称,然后通过这个唯一 key 值来获取相应的 value 数 ...

  2. import 语句用于导入从外部模块,另一个脚本等导出的函数,对象或原语。

    import 语句用于导入从外部模块,另一个脚本等导出的函数,对象或原语. 注意:此功能目前无法在任何浏览器中实现.它在许多转换器中实现,例如 Traceur Compiler , Babel , R ...

  3. eclipse上一次没有正确关闭,导致启动的时候卡死错误解决方法

    关于 eclipse启动卡死的问题(eclipse上一次没有正确关闭,导致启动的时候卡死错误解决方法),自己常用的解决方法: 方案一(推荐使用,如果没有这个文件,就使用方案二): 到<works ...

  4. ibernate 配置数据库方言

          在开发hibernate的程序时,需要进行SessionFactory的配置,简单地说,也就是建立与数据库之间连接的配置,在hibernate中一般使用xml文件来进行配置,但是在该文件的 ...

  5. 专业英语词汇(Java)

    abstract (关键字)             抽象 ['.bstr.kt] access                            vt.访问,存取 ['.kses]‘(n.入口, ...

  6. exception keynote

    [exception keynote] Note that the parentheses around this tuple are required, because except ValueEr ...

  7. github page更新后不生效

    昨晚在本地git仓库修改了页面内容后,git push上去,到页面去刷新发现,并没有改变.本来还想着是需要点时间来更新,就再等等. 没想到过了十几分钟后,还是没有更新. 然后同时习惯性地打开了邮箱,发 ...

  8. 调用webservices报错 原因是没有导入commons-logging和commons-discovery

    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/discovery/to ...

  9. 134. Gas Station (Array; DP)

    There are N gas stations along a circular route, where the amount of gas at station i is gas[i]. You ...

  10. python之三级菜单作业

    作业需求如下 1.根据用户的输入打印相应的省.市.县的信息 2.每次只要用户输入b,则返回上一级菜单 3.每次只要用户输入q,则直接退出 4.用户输错需要有提示 homework_dict = {'内 ...