网络流/最大权闭合图


  题目:http://codeforces.com/problemset/problem/311/E

  嗯这是最大权闭合图中很棒的一道题了~

  能够1A真是开心~也是我A掉的第一道E题吧……(其实是这题放在E偏水了吧……)

  题目大意:有n个0/1变量,给定每个变量的初值,以及每个变量取反的费用$v_i$,有m组需求,对于第 i 组需求,如果集合$S_i$里面的每个变量的值都为给定的v(0 or 1),则获得$\omega_i$的利润,求最大总利润。(其中某些请求若是无法满足还需额外付出g的代价)

  这题其实用的思路有点类似最小割……假定跟S相连的变量是选1,跟T相连的是选0,那么对于初值为1的点连i->T,容量为$v_i$,初值为0的连S->i,容量为$v_i$,表示将这些变量取反的代价。

  然后考虑需求,如果是要求全为1,则对每个$S_i$中的元素$i$连边 i->n+j ,费用为INF,同时连n+j->T,容量为$\omega_i$;如果是全为0的请求则反过来。

  另外这题有个特殊的要求:一些无法满足的请求需要额外付出g的代价。其实这很好解决,我们的答案是$\sum \omega_i-max_flow$,那么我们对于“朋友的请求”,就在tot+了$\omega_i$后,建边时改成容量为$\omega_i+g$即可。

# When Who Problem Lang Verdict Time Memory
10516710 2015-03-29 17:21:31 Tunix E - Biologist GNU C++ Accepted 92 ms 28188 KB
  1. //CF 311E
  2. #include<vector>
  3. #include<cstdio>
  4. #include<cstring>
  5. #include<cstdlib>
  6. #include<iostream>
  7. #include<algorithm>
  8. #define rep(i,n) for(int i=0;i<n;++i)
  9. #define F(i,j,n) for(int i=j;i<=n;++i)
  10. #define D(i,j,n) for(int i=j;i>=n;--i)
  11. #define pb push_back
  12. using namespace std;
  13. inline int getint(){
  14. int v=,sign=; char ch=getchar();
  15. while(ch<''||ch>''){ if (ch=='-') sign=-; ch=getchar();}
  16. while(ch>=''&&ch<=''){ v=v*+ch-''; ch=getchar();}
  17. return v*sign;
  18. }
  19. const int N=1e6+,M=,INF=~0u>>;
  20. typedef long long LL;
  21. /******************tamplate*********************/
  22. int n,m,g,tot,ans;
  23. int a[N],v[N];
  24. struct edge{int to,v;};
  25. struct Net{
  26. edge E[M];
  27. int head[N],next[M],cnt;
  28. void ins(int x,int y,int v){
  29. E[++cnt]=(edge){y,v};
  30. next[cnt]=head[x]; head[x]=cnt;
  31. }
  32. void add(int x,int y,int v){
  33. ins(x,y,v); ins(y,x,);
  34. }
  35. int S,T,cur[N],d[N],Q[N];
  36. bool mklevel(){
  37. memset(d,-,sizeof d);
  38. d[S]=;
  39. int l=,r=-;
  40. Q[++r]=S;
  41. while(l<=r){
  42. int x=Q[l++];
  43. for(int i=head[x];i;i=next[i])
  44. if (d[E[i].to]==- && E[i].v){
  45. d[E[i].to]=d[x]+;
  46. Q[++r]=E[i].to;
  47. }
  48. }
  49. return d[T]!=-;
  50. }
  51. int dfs(int x,int a){
  52. if (x==T) return a;
  53. int flow=;
  54. for(int &i=cur[x];i && flow<a;i=next[i])
  55. if (E[i].v && d[E[i].to]==d[x]+){
  56. int f=dfs(E[i].to,min(a-flow,E[i].v));
  57. E[i].v-=f;
  58. E[i^].v+=f;
  59. flow+=f;
  60. }
  61. if (!flow) d[x]=-;
  62. return flow;
  63. }
  64. void Dinic(){
  65. while(mklevel()){
  66. F(i,S,T) cur[i]=head[i];
  67. ans+=dfs(S,INF);
  68. }
  69. }
  70. void init(){
  71. n=getint(); m=getint(); g=getint();
  72. F(i,,n) a[i]=getint();
  73. F(i,,n) v[i]=getint();
  74. cnt=; S=; T=n+m+; ans=tot=;
  75. F(i,,n) if(a[i]) add(S,i,v[i]);else add(i,T,v[i]);
  76. F(i,,m){
  77. int x=getint(), w=getint(), k=getint(); tot+=w;
  78. F(j,,k){
  79. int y=getint();
  80. if (!x) add(y,n+i,INF);
  81. else add(n+i,y,INF);
  82. }
  83. int y=getint();
  84. if(y) w+=g;//if friend
  85. if (!x) add(n+i,T,w);
  86. else add(S,n+i,w);
  87. }
  88. }
  89. }G1;
  90.  
  91. int main(){
  92. #ifndef ONLINE_JUDGE
  93. freopen("311E.in","r",stdin);
  94. freopen("311E.out","w",stdout);
  95. #endif
  96. G1.init(); G1.Dinic();
  97. printf("%d\n",tot-ans);
  98. return ;
  99. }

  

【CodeForces】【311E】Biologist的更多相关文章

  1. 【Codeforces #312 div2 A】Lala Land and Apple Trees

    # [Codeforces #312 div2 A]Lala Land and Apple Trees 首先,此题的大意是在一条坐标轴上,有\(n\)个点,每个点的权值为\(a_{i}\),第一次从原 ...

  2. 【Codeforces Round #438 C】 Qualification Rounds

    [链接]h在这里写链接 [题意] 给你n个问题,每个人都知道一些问题. 然后让你选择一些问题,使得每个人知道的问题的数量,不超过这些问题的数量的一半. [题解] 想法题. 只要有两个问题. 这两个问题 ...

  3. 【Codeforces Round #438 B】Race Against Time

    [链接]h在这里写链接 [题意] 时针.分钟.秒针走不过去. 问你从t1时刻能不能走到t2时刻 [题解] 看看时针.分钟.秒针的影响就好. 看看是不是在整时的位置就好. 然后看看影响到x不能到y; 然 ...

  4. 【Codeforces Round #438 A】Bark to Unlock

    [链接]h在这里写链接 [题意] 在这里写题意 [题解] 枚举它是在连接处,还是就是整个字符串就好. [错的次数] 0 [反思] 在这了写反思 [代码] #include <bits/stdc+ ...

  5. 【codeforces 718 C&D】C. Sasha and Array&D. Andrew and Chemistry

    C. Sasha and Array 题目大意&题目链接: http://codeforces.com/problemset/problem/718/C 长度为n的正整数数列,有m次操作,$o ...

  6. 【Codeforces 321E / BZOJ 5311】【DP凸优化】【单调队列】贞鱼

    目录 题意: 输入格式 输出格式 思路: DP凸优化的部分 单调队列转移的部分 坑点 代码 题意: 有n条超级大佬贞鱼站成一行,现在你需要使用恰好k辆车把它们全都运走.要求每辆车上的贞鱼在序列中都是连 ...

  7. 【codeforces contest 1119 F】Niyaz and Small Degrees

    题目 描述 \(n\) 个点的树,每条边有一个边权: 对于一个 \(X\) ,求删去一些边后使得每个点的度数 \(d_i\) 均不超过 \(X\) 的最小代价: 你需要依次输出 \(X=0 \to n ...

  8. 【codeforces #282(div 1)】AB题解

    A. Treasure time limit per test 2 seconds memory limit per test 256 megabytes input standard input o ...

  9. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  10. 【搜索】【并查集】Codeforces 691D Swaps in Permutation

    题目链接: http://codeforces.com/problemset/problem/691/D 题目大意: 给一个1到N的排列,M个操作(1<=N,M<=106),每个操作可以交 ...

随机推荐

  1. 安装pdo.so和pdo_mysql.so还有pcntl.so扩展到php中

    1.下载源码,解压tar -xzvf php-5.4.20.tar.gz cd  /usr/local/src/php-5.4.20/ext/pdo /usr/local/php/bin/phpize ...

  2. mysql中存不进去json_encode格式的数据

    主要是因为json_encode格式的数据,中间带有\,在存入数据库的时候,会把反斜杠删除了. 所以,想要存进去的话,需要在外层调用一下函数addslashes();这个函数会在每个反斜杠的前面添加反 ...

  3. BT9034: 仅 IE 和 Opera 支持 HTMLFrameElement 和 HTMLIFrameElement 的 document 属性

    标准参考 根据 DOM-2 中的描述,HTMLFrameElement 和 HTMLIFrameElement 都没有 'document' 属性. 关于 HTMLFrameElement 对象的详细 ...

  4. mssql 置疑的处理

    declare @dbName sysName ALTER DATABASE @dbName SET EMERGENCY ALTER DATABASE @dbName SET SINGLE_USER ...

  5. Delphi 7 里没有加载的控件

    在原来版本如D5.D6中使用的控件如Quickrep,FastNet等,在D7中仍然是保留的.只是Delphi没有将他们默认的安装到组件面版中来.这些控件包全部保存在Delphi目录的bin下,文件扩 ...

  6. 用C#写的读写CSV文件

    用C#写的读取CSV文件的源代码 CSV文件的格子中包含逗号,引号,换行等,都能轻松读取,而且可以把数据转化成DATATABLE格式 using System; using System.Text; ...

  7. 对ASP.NET Entity FrameWork进行单元测试

    添加一个测试用的类库:将Web.config中的connectionstrings节点下的东东复制一份到刚添加的类库的app.config下 使用NUint+TestDriven.net进行测试: 如 ...

  8. python之ftplib库

    检测ftp是否可用 #!/usr/bin/python #coding:utf-8 from ftplib import FTP def ftp_open(ip,user,passwd): try: ...

  9. properties文件

    properties文件也叫资源文件,以键值对的形式存放文本内容.一个properties对象代表一个资源文件 步骤:1.生成properties对象2.生成InputStream/Reader来读取 ...

  10. EMVTag系列5《8E 持卡人验证方法(CVM)列表》

    L: var. up to 252 -R(需求):数据必须存在,在读应用数据过程中,终端不检查 按照优先顺序列出卡片应用支持的所有持卡人验证方法 注:一个应用中可以有多个CVM列表,例如一个用于国内交 ...