Xiao Ming is an expert in computer science and technology, so he can get a lot of projects every month. The projects always bring him a lot of money, now he is thinking how to earn money as more as possible.

Every month he can get m projects, and each project Ai will bring him Xi yuan. Although Xiao Ming is an expert, he still needs to hire some other guys to help him. Of course, the employees are not as good as Xiao Ming, for they are just good at some single aspect. So, they should work together to finish one project. There is a list shows the salary of m employees, who are labeled from 0 to m-1. Xiao Ming only hires employees, in that list, and he knows who will be needed by each project.If one employee is hired, he can join in several projects.

Input

The first line is an integer c shows the number of cases. For each case, the first line has two numbers m,n(m,n <=100), denoting that there is m projects and n employees on the list.The second line has m integers, which are seperated by a single blank, the ith number Ximeans the project Ai will bring Xiao Ming Xi yuan. Xi is less the 10000. The third line has n integers, which are seperated by a single blank, the ith number Yimeans the employee Bi will cost Xiao Ming Yi yuan. And the next m lines will show which part of the employees will be needed by each project. Line i is a list of the employees, who are needed by project Ai. In each line, first a number Zi shows the number of employees needed by this project. And Zi labels of the emloyees follows, which are still seperated by a sigle blank.

Output

You should output a single integer shows the maximun money Xiao Ming can earn in a single month. The money he can earn is equall to the money he can totally get minus the money he totally cost. You should not leave any extra blanks at the end of each line.

Sample Input

  1. 1
  2. 3 5
  3. 30 40 43
  4. 55 17 23 22 11
  5. 3 0 1 2
  6. 3 1 2 3
  7. 2 2 1

Sample Output

  1. 21

Hint

If Xiao Ming can do less project to earn more money, he will certainly do that.

题解:

最大权闭合子图水题,每一个工作任务有一条边 容量为输入的利润,每一个员工到汇点有一条边 容量为雇佣费,

每一个工作任务到需要的员工有一条边,容量为INF.

答案就是利润和-最小割

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. #include<cstring>
  5. #include<cstdlib>
  6. using namespace std;
  7. const int N=,INF=;
  8. int gi(){
  9. int str=;char ch=getchar();
  10. while(ch>''||ch<'')ch=getchar();
  11. while(ch>='' && ch<='')str=str*+ch-'',ch=getchar();
  12. return str;
  13. }
  14. int n,m,s=,T,ans=;
  15. int num=,head[N],q[N],dep[N];
  16. struct Lin{
  17. int next,to,dis;
  18. }a[N*N];
  19. void init(int x,int y,int dis){
  20. a[++num].next=head[x];
  21. a[num].to=y;
  22. a[num].dis=dis;
  23. head[x]=num;
  24. a[++num].next=head[y];
  25. a[num].to=x;
  26. a[num].dis=;
  27. head[y]=num;
  28. }
  29. bool bfs()
  30. {
  31. memset(dep,,sizeof(dep));
  32. q[]=s;dep[s]=;int t=,sum=,u,x;
  33. while(t!=sum)
  34. {
  35. x=q[++t];
  36. for(int i=head[x];i;i=a[i].next){
  37. u=a[i].to;
  38. if(dep[u]||a[i].dis<=)continue;
  39. dep[u]=dep[x]+;q[++sum]=u;
  40. }
  41. }
  42. return dep[T];
  43. }
  44. int dfs(int x,int flow)
  45. {
  46. if(x==T || !flow)return flow;
  47. int u,tmp,sum=;
  48. for(int i=head[x];i;i=a[i].next){
  49. u=a[i].to;
  50. if(a[i].dis<= || dep[u]!=dep[x]+)continue;
  51. tmp=dfs(u,min(flow,a[i].dis));
  52. a[i].dis-=tmp;a[i^].dis+=tmp;
  53. sum+=tmp;flow-=tmp;
  54. }
  55. return sum;
  56. }
  57. int maxflow(){
  58. int tot=,tmp;
  59. while(bfs()){
  60. tmp=dfs(s,INF);
  61. while(tmp)tot+=tmp,tmp=dfs(s,INF);
  62. }
  63. return tot;
  64. }
  65. void work()
  66. {
  67. int x,k;
  68. m=gi();n=gi();
  69. T=n+m+;
  70. for(int i=;i<=m;i++){
  71. x=gi();init(s,i,x);
  72. ans+=x;
  73. }
  74. for(int i=;i<=n;i++){
  75. x=gi();init(i+m,T,x);
  76. }
  77. for(int i=;i<=m;i++){
  78. k=gi();
  79. while(k--){
  80. x=gi();init(i,x+m+,INF);
  81. }
  82. }
  83. printf("%d\n",ans-maxflow());
  84. }
  85. void Clear(){
  86. memset(head,,sizeof(head));
  87. num=;ans=;
  88. }
  89. int main()
  90. {
  91. int TT=gi();
  92. while(TT--){
  93. work();
  94. Clear();
  95. }
  96. return ;
  97. }

[HOJ2634] How to earn more 最大权闭合子图的更多相关文章

  1. Human life FZU - 2295 最大权闭合子图(第一次遇到被教育了)

    Xzz is playing a MMORPG "human life". In this game, there are N different skills. Some ski ...

  2. BZOJ1565 [NOI2009]植物大战僵尸(拓扑排序 + 最大权闭合子图)

    题目 Source http://www.lydsy.com/JudgeOnline/problem.php?id=1565 Description Input Output 仅包含一个整数,表示可以 ...

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

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

  4. [BZOJ 1497][NOI 2006]最大获利(最大权闭合子图)

    题目:http://www.lydsy.com:808/JudgeOnline/problem.php?id=1497 分析: 这是在有向图中的问题,且边依赖于点,有向图中存在点.边之间的依赖关系可以 ...

  5. HDU4971 A simple brute force problem.(强连通分量缩点 + 最大权闭合子图)

    题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=4971 Description There's a company with several ...

  6. HDU5855 Less Time, More profit(最大权闭合子图)

    题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=5855 Description The city planners plan to build ...

  7. HDU5772 String problem(最大权闭合子图)

    题目..说了很多东西 官方题解是这么说的: 首先将点分为3类 第一类:Pij 表示第i个点和第j个点组合的点,那么Pij的权值等于w[i][j]+w[j][i](表示得分) 第二类:原串中的n个点每个 ...

  8. SCU3109 Space flight(最大权闭合子图)

    嗯,裸的最大权闭合子图. #include<cstdio> #include<cstring> #include<queue> #include<algori ...

  9. hiho 第119周 最大权闭合子图

    描述 周末,小Hi和小Ho所在的班级决定举行一些班级建设活动. 根据周内的调查结果,小Hi和小Ho一共列出了N项不同的活动(编号1..N),第i项活动能够产生a[i]的活跃值. 班级一共有M名学生(编 ...

随机推荐

  1. 算法第四版学习笔记之快速排序 QuickSort

    软件:DrJava 参考书:算法(第四版) 章节:2.3快速排序(以下截图是算法配套视频所讲内容截图) 1:快速排序 2:

  2. css3动画transition详解2

    transition主要包含四个属性值:执行变换的属性:transition-property,变换延续的时间:transition-duration,在延续时间段,变换的速率变化transition ...

  3. JAVA_SE基础——56.包的创建

    接下来我来给大家讲下--包 , 先看一段代码 class Demo1{ public static void main(String[] args) { System.out.println(&quo ...

  4. 07_Python的控制判断循环语句1(if判断,for循环...)_Python编程之路

    Python的数据类型在前几节我们都简单的一一介绍了,接下来我们就要讲到Python的控制判断循环语句 在现实编程中,我们往往要利用计算机帮我们做大量重复计算的工作,在这样的情况下,需要机器能对某个条 ...

  5. JS 上传图片时实现预览

    网页中一张图片可以这样显示: <img src="http://www.letuknowit.com/images/wg.png"/>也可以这样显示:<img s ...

  6. WebApi 的三种寄宿方式 (一)

    最近逛博客园,看到了Owin,学习了一下,做个笔记,说不定将来哪天就用上了 关于 Owin 的介绍,百度解释的很清楚了: https://baike.baidu.com/item/owin/28607 ...

  7. 关于tomcat和jetty的乱码问题

    现象:windows 下的tomcat和jetty默认安装都有问题,linux下的没有问题. 分析:操作系统字符集发生作用了,程序有些处理可能使用了该默认字符集,导致两边现象不一致,建议排查,先尝试通 ...

  8. 新概念英语(1-15)Your passports please

    Is there a problem wtih the Customers officer? A:Are you Swedish? B:No. We are not. We are Danish. A ...

  9. leetcode算法: Average of Levels in Binary Tree

    Given a non-empty binary tree, return the average value of the nodes on each level in the form of an ...

  10. python多进程--------linux系统中python的os.fork()方法

    linux下python 创建子进程的原理: os.fork()方法 的原理 为了实现并发.多任务,我们可以在主程序种开启一个进程或者线程.在类unix操作系统当中(非windows),可以用pyth ...