Birthday

https://www.nowcoder.com/acm/contest/206/A

题目描述

恬恬的生日临近了。宇扬给她准备了一个蛋糕。
正如往常一样,宇扬在蛋糕上插了n支蜡烛,并把蛋糕分为m个区域。因为某种原因,他必须把第i根蜡烛插在第ai个区域或第bi个区域。区域之间是不相交的。宇扬在一个区域内同时摆放x支蜡烛就要花费x2的时间。宇扬布置蛋糕所用的总时间是他在每个区域花的时间的和。
宇扬想快些见到恬恬,你能告诉他布置蛋糕最少需要多少时间吗?

输入描述:

  1. 第一行包含两个整数nm1 n 50 2 m 50)。
    接下来n行,每行两个整数a

i

  1. ,b

i

  1. 1 a

i

  1. , b

i

  1. m)。

输出描述:

  1. 一个整数表示答案。

输入例子:
  1. 3 3
  2. 1 2
  3. 1 2
  4. 1 2
输出例子:
  1. 5

-->

示例1

输入

  1. 3 3
  2. 1 2
  3. 1 2
  4. 1 2

输出

  1. 5
示例2

输入

  1. 3 3
  2. 1 2
  3. 2 3
  4. 1 3

输出

  1. 3
  2.  
  3. 把每个区域分成n份,每份的费用为i*i-(i-1)*(i-1),这是参考别人的,节点数n+m+2(两个节点之间可以连多条边)
  1. #include<iostream>
  2. #include<algorithm>
  3. #include<queue>
  4. #include<cstring>
  5. using namespace std;
  6.  
  7. const int INF=0x3f3f3f3f;
  8. const int N=;
  9. const int M=;
  10. int top;
  11. int dist[N],pre[N];
  12. bool vis[N];
  13. int c[N];
  14. int maxflow;
  15.  
  16. struct Vertex{
  17. int first;
  18. }V[N];
  19. struct Edge{
  20. int v,next;
  21. int cap,flow,cost;
  22. }E[M];
  23.  
  24. void init(){
  25. memset(V,-,sizeof(V));
  26. top=;
  27. maxflow=;
  28. }
  29.  
  30. void add_edge(int u,int v,int c,int cost){
  31. E[top].v=v;
  32. E[top].cap=c;
  33. E[top].flow=;
  34. E[top].cost=cost;
  35. E[top].next=V[u].first;
  36. V[u].first=top++;
  37. }
  38.  
  39. void add(int u,int v,int c,int cost){
  40. add_edge(u,v,c,cost);
  41. add_edge(v,u,,-cost);
  42. }
  43.  
  44. bool SPFA(int s,int t,int n){
  45. int i,u,v;
  46. queue<int>qu;
  47. memset(vis,false,sizeof(vis));
  48. memset(c,,sizeof(c));
  49. memset(pre,-,sizeof(pre));
  50. for(i=;i<=n;i++){
  51. dist[i]=INF;
  52. }
  53. vis[s]=true;
  54. c[s]++;
  55. dist[s]=;
  56. qu.push(s);
  57. while(!qu.empty()){
  58. u=qu.front();
  59. qu.pop();
  60. vis[u]=false;
  61. for(i=V[u].first;~i;i=E[i].next){
  62. v=E[i].v;
  63. if(E[i].cap>E[i].flow&&dist[v]>dist[u]+E[i].cost){
  64. dist[v]=dist[u]+E[i].cost;
  65. pre[v]=i;
  66. if(!vis[v]){
  67. c[v]++;
  68. qu.push(v);
  69. vis[v]=true;
  70. if(c[v]>n){
  71. return false;
  72. }
  73. }
  74. }
  75. }
  76. }
  77. if(dist[t]==INF){
  78. return false;
  79. }
  80. return true;
  81. }
  82.  
  83. int MCMF(int s,int t,int n){
  84. int d;
  85. int i,mincost;
  86. mincost=;
  87. while(SPFA(s,t,n)){
  88. d=INF;
  89. for(i=pre[t];~i;i=pre[E[i^].v]){
  90. d=min(d,E[i].cap-E[i].flow);
  91. }
  92. maxflow+=d;
  93. for(i=pre[t];~i;i=pre[E[i^].v]){
  94. E[i].flow+=d;
  95. E[i^].flow-=d;
  96. }
  97. mincost+=dist[t]*d;
  98. }
  99. return mincost;
  100. }
  101.  
  102. int main(){
  103. int n,m;
  104. int v,u,w,c;
  105. int s,t;
  106. cin>>n>>m;
  107. init();
  108. for(int i=;i<=n;i++){
  109. cin>>u>>v;
  110. // for(int j=1;j<=n;j++){
  111. add(i,n+u,,);
  112. // }
  113. // for(int j=1;j<=n;j++){
  114. add(i,n+v,,);
  115. // }
  116. }
  117. s=,t=n+m+;
  118. for(int i=;i<=n;i++){
  119. add(s,i,,);
  120. }
  121. for(int i=;i<=m;i++){
  122. for(int j=;j<=n;j++){
  123. // add(n+m*(i-1)+j,t,1,j*j-(j-1)*(j-1));
  124. add(i+n,n+m+,,j*j-(j-)*(j-));
  125. }
  126. }
  127. int ans=MCMF(s,t,n+m+);
  128. cout<<ans<<endl;
  129. }

这是自己写的,节点数n+n*m+2

  1. #include<iostream>
  2. #include<algorithm>
  3. #include<queue>
  4. #include<cstring>
  5. using namespace std;
  6.  
  7. const int INF=0x3f3f3f3f;
  8. const int N=;
  9. const int M=;
  10. int top;
  11. int dist[N],pre[N];
  12. bool vis[N];
  13. int c[N];
  14. int maxflow;
  15.  
  16. struct Vertex{
  17. int first;
  18. }V[N];
  19. struct Edge{
  20. int v,next;
  21. int cap,flow,cost;
  22. }E[M];
  23.  
  24. void init(){
  25. memset(V,-,sizeof(V));
  26. top=;
  27. maxflow=;
  28. }
  29.  
  30. void add_edge(int u,int v,int c,int cost){
  31. E[top].v=v;
  32. E[top].cap=c;
  33. E[top].flow=;
  34. E[top].cost=cost;
  35. E[top].next=V[u].first;
  36. V[u].first=top++;
  37. }
  38.  
  39. void add(int u,int v,int c,int cost){
  40. add_edge(u,v,c,cost);
  41. add_edge(v,u,,-cost);
  42. }
  43.  
  44. bool SPFA(int s,int t,int n){
  45. int i,u,v;
  46. queue<int>qu;
  47. memset(vis,false,sizeof(vis));
  48. memset(c,,sizeof(c));
  49. memset(pre,-,sizeof(pre));
  50. for(i=;i<=n;i++){
  51. dist[i]=INF;
  52. }
  53. vis[s]=true;
  54. c[s]++;
  55. dist[s]=;
  56. qu.push(s);
  57. while(!qu.empty()){
  58. u=qu.front();
  59. qu.pop();
  60. vis[u]=false;
  61. for(i=V[u].first;~i;i=E[i].next){
  62. v=E[i].v;
  63. if(E[i].cap>E[i].flow&&dist[v]>dist[u]+E[i].cost){
  64. dist[v]=dist[u]+E[i].cost;
  65. pre[v]=i;
  66. if(!vis[v]){
  67. c[v]++;
  68. qu.push(v);
  69. vis[v]=true;
  70. if(c[v]>n){
  71. return false;
  72. }
  73. }
  74. }
  75. }
  76. }
  77. if(dist[t]==INF){
  78. return false;
  79. }
  80. return true;
  81. }
  82.  
  83. int MCMF(int s,int t,int n){
  84. int d;
  85. int i,mincost;
  86. mincost=;
  87. while(SPFA(s,t,n)){
  88. d=INF;
  89. for(i=pre[t];~i;i=pre[E[i^].v]){
  90. d=min(d,E[i].cap-E[i].flow);
  91. }
  92. maxflow+=d;
  93. for(i=pre[t];~i;i=pre[E[i^].v]){
  94. E[i].flow+=d;
  95. E[i^].flow-=d;
  96. }
  97. mincost+=dist[t]*d;
  98. }
  99. return mincost;
  100. }
  101.  
  102. int main(){
  103. int n,m;
  104. int v,u,w,c;
  105. int s,t;
  106. cin>>n>>m;
  107. init();
  108. for(int i=;i<=n;i++){
  109. cin>>u>>v;
  110. for(int j=;j<=n;j++){
  111. add(i,n+j+n*(u-),,);
  112. add(i,n+j+n*(v-),,);
  113. }
  114. }
  115. s=,t=n+n*m+;
  116. for(int i=;i<=n;i++){
  117. add(s,i,,);
  118. }
  119. for(int i=;i<=m;i++){
  120. for(int j=;j<=n;j++){
  121. add(n+n*(i-)+j,t,,j*j-(j-)*(j-));
  122. }
  123. }
  124. int ans=MCMF(s,t,n+n*m+);
  125. cout<<ans<<endl;
  126. }

Birthday(费用流)的更多相关文章

  1. hdu-5988 Coding Contest(费用流)

    题目链接: Coding Contest Time Limit: 2000/1000 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Ot ...

  2. POJ2195 Going Home[费用流|二分图最大权匹配]

    Going Home Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 22088   Accepted: 11155 Desc ...

  3. BZOJ3130: [Sdoi2013]费用流[最大流 实数二分]

    3130: [Sdoi2013]费用流 Time Limit: 10 Sec  Memory Limit: 128 MBSec  Special JudgeSubmit: 960  Solved: 5 ...

  4. 洛谷 1004 dp或最大费用流

    思路: dp方法: 设dp[i][j][k][l]为两条没有交叉的路径分别走到(i,j)和(k,l)处最大价值. 则转移方程为 dp[i][j][k][l]=max(dp[i-1][j][k-1][l ...

  5. Codeforces 730I [费用流]

    /* 不要低头,不要放弃,不要气馁,不要慌张 题意: 给两行n个数,要求从第一行选取a个数,第二行选取b个数使得这些数加起来和最大. 限制条件是第一行选取了某个数的条件下,第二行不能选取对应位置的数. ...

  6. zkw费用流+当前弧优化

    zkw费用流+当前弧优化 var o,v:..] of boolean; f,s,d,dis:..] of longint; next,p,c,w:..] of longint; i,j,k,l,y, ...

  7. 【BZOJ-4213】贪吃蛇 有上下界的费用流

    4213: 贪吃蛇 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 58  Solved: 24[Submit][Status][Discuss] Desc ...

  8. 【BZOJ-3638&3272&3267&3502】k-Maximum Subsequence Sum 费用流构图 + 线段树手动增广

    3638: Cf172 k-Maximum Subsequence Sum Time Limit: 50 Sec  Memory Limit: 256 MBSubmit: 174  Solved: 9 ...

  9. [bzoj4514]数字配对[费用流]

    今年SDOI的题,看到他们在做,看到过了一百多个人,然后就被虐惨啦... 果然考试的时候还是打不了高端算法,调了...几天 默默地yy了一个费用流构图: 源连所有点,配对的点连啊,所有点连汇... 后 ...

  10. 费用流 ZOJ 3933 Team Formation

    题目链接 题意:两个队伍,有一些边相连,问最大组对数以及最多女生数量 分析:费用流模板题,设置两个超级源点和汇点,边的容量为1,费用为男生数量.建边不能重复建边否则会T.zkw费用流在稠密图跑得快,普 ...

随机推荐

  1. python&pandas 与mysql 连接

    1. python 与mysql 连接及操作,直接上代码,简单直接高效: import MySQLdb try: conn = MySQLdb.connect(host='localhost',use ...

  2. [转载] ./configure,make,make install的作用

    1.configure,这一步一般用来生成 Makefile,为下一步的编译做准备,你可以通过在 configure 后加上参数来对安装进行控制,比如代码:./configure –prefix=/u ...

  3. numpy的shuffle函数

    import numpy as np from numpy.random import shuffle import pandas as pd df = pd.DataFrame([[1,2,3],[ ...

  4. WCF服务部署

    一.将WCF服务部署到IIS上 1.首先检测电脑上是否安装了IIS,一般来说Win7以上系统自带IIS 2.下面进行IIS服务的开启设置 控制面板=>打开或关闭Windos功能 3.勾选该窗口中 ...

  5. java的多态性(二)

    2013-10-16 19:44 9364人阅读 评论(25) 收藏 举报  分类: [JAVA开发]-----Java提高篇(36)  版权声明:本文为博主原创文章,未经博主允许不得转载.   目录 ...

  6. Spark SQL Hive Support Demo

    前提: 1.spark1.0的包编译时指定支持hive:./make-distribution.sh --hadoop 2.3.0-cdh5.0.0 --with-yarn --with-hive - ...

  7. 洛谷:P1087 FBI树 P1030 求先序排列 P1305 新二叉树

    至于为啥把这三个题放到一起,大概是因为洛谷的试炼场吧,三道树的水题,首先要理解 先序中序后序遍历方法. fbi树由于数量小,在递归每个区间时,暴力跑一遍区间里的数,看看是否有0和1.至于递归的方法,二 ...

  8. PyQt5系列教程

    PyQt5系列教程(一)Mac OS X下搭建Python3.5.1+PyQt5开发环境PyQt5系列教程(二)利用QtDesigner设计UI界面PyQt5系列教程(三)用py2exe进行程序打包P ...

  9. uva-10392-因数分解

    #include<stdio.h> #include<iostream> #include<queue> #include<memory.h> #inc ...

  10. Python入门-散点图绘制

    Python入门-散点图绘制  废话不说 直接上代码 import matplotlib.pyplot as plt x_values = list(range(1,1001)) y_values = ...