http://acm.hdu.edu.cn/showproblem.php?pid=3488

题意:

给出n个点和m条边,每条边有距离,把这n个点分成1个或多个环,且每个点只能在一个环中,保证有解。

思路:

把一个点分成两部分,1~n和n+i~2*n。

连边的情况是这样的,(src,i,1,0),(i+n,dst,1,0)。

如果两个点之间相同,则(i,j+n,1,d)。

其实这道题目就是选n条边,如何使得权值之和最小。

具体请参考这http://blog.csdn.net/u013480600/article/details/39185013

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cmath>
  4. #include<cstring>
  5. #include<queue>
  6. using namespace std;
  7. typedef long long LL;
  8.  
  9. const int maxn=+;
  10. const int INF=0x3f3f3f3f;
  11.  
  12. struct Edge
  13. {
  14. int from, to, cap, flow, cost;
  15. Edge(int u, int v, int c, int f, int w) :from(u), to(v), cap(c), flow(f), cost(w) {}
  16. };
  17.  
  18. struct MCMF
  19. {
  20. int n, m;
  21. vector<Edge> edges;
  22. vector<int> G[maxn];
  23. int inq[maxn];
  24. int d[maxn];
  25. int p[maxn];
  26. int a[maxn];
  27.  
  28. void init(int n)
  29. {
  30. this->n = n;
  31. for (int i = ; i<n; i++) G[i].clear();
  32. edges.clear();
  33. }
  34.  
  35. void AddEdge(int from, int to, int cap, int cost)
  36. {
  37. edges.push_back(Edge(from, to, cap, , cost));
  38. edges.push_back(Edge(to, from, , , -cost));
  39. m = edges.size();
  40. G[from].push_back(m - );
  41. G[to].push_back(m - );
  42. }
  43.  
  44. bool BellmanFord(int s, int t, int &flow, LL & cost)
  45. {
  46. for (int i = ; i<n; i++) d[i] = INF;
  47. memset(inq, , sizeof(inq));
  48. d[s] = ; inq[s] = ; p[s] = ; a[s] = INF;
  49.  
  50. queue<int> Q;
  51. Q.push(s);
  52. while (!Q.empty()){
  53. int u = Q.front(); Q.pop();
  54. inq[u] = ;
  55. for (int i = ; i<G[u].size(); i++){
  56. Edge& e = edges[G[u][i]];
  57. if (e.cap>e.flow && d[e.to]>d[u] + e.cost){
  58. d[e.to] = d[u] + e.cost;
  59. p[e.to] = G[u][i];
  60. a[e.to] = min(a[u], e.cap - e.flow);
  61. if (!inq[e.to]) { Q.push(e.to); inq[e.to] = ; }
  62. }
  63. }
  64. }
  65. if (d[t] == INF) return false;
  66. flow += a[t];
  67. cost += (LL)d[t] * (LL)a[t];
  68. for (int u = t; u != s; u = edges[p[u]].from){
  69. edges[p[u]].flow += a[t];
  70. edges[p[u] ^ ].flow -= a[t];
  71.  
  72. }
  73. return true;
  74. }
  75.  
  76. void MincostMaxdflow(int s, int t, LL & cost)
  77. {
  78. int flow = ; cost = ;
  79. while (BellmanFord(s, t, flow, cost) );
  80. //return flow;
  81. }
  82. }t;
  83.  
  84. int n,m;
  85.  
  86. int main()
  87. {
  88. //freopen("D:\\input.txt", "r", stdin);
  89. int T;
  90. scanf("%d",&T);
  91. int u,v,d;
  92. while(T--)
  93. {
  94. scanf("%d%d",&n,&m);
  95. int src=,dst=*n+;
  96. t.init(dst+);
  97. for(int i=;i<=n;i++)
  98. {
  99. t.AddEdge(src,i,,);
  100. t.AddEdge(i+n,dst,,);
  101. }
  102. for(int i=;i<m;i++)
  103. {
  104. scanf("%d%d%d",&u,&v,&d);
  105. t.AddEdge(u,v+n,,d);
  106. }
  107. long long cost;
  108. t.MincostMaxdflow(src,dst,cost);
  109. printf("%d\n",cost);
  110. }
  111. return ;
  112. }

HDU 3488 Tour(最小费用流:有向环最小权值覆盖)的更多相关文章

  1. HDU 1853 Cyclic Tour[有向环最小权值覆盖]

    Cyclic Tour Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/65535 K (Java/Others)Total ...

  2. Tour HDU - 3488 有向环最小权值覆盖 费用流

    http://acm.hdu.edu.cn/showproblem.php?pid=3488 给一个无源汇的,带有边权的有向图 让你找出一个最小的哈密顿回路 可以用KM算法写,但是费用流也行 思路 1 ...

  3. Hdu 3488 Tour (KM 有向环覆盖)

    题目链接: Hdu 3488 Tour 题目描述: 有n个节点,m条有权单向路,要求用一个或者多个环覆盖所有的节点.每个节点只能出现在一个环中,每个环中至少有两个节点.问最小边权花费为多少? 解题思路 ...

  4. ZOJ-2342 Roads 二分图最小权值覆盖

    题意:给定N个点,M条边,M >= N-1.已知M条边都有一个权值,已知前N-1边能构成一颗N个节点生成树,现问通过修改这些边的权值使得最小生成树为前N条边的最小改动总和为多少? 分析:由于计算 ...

  5. hdu 1853 Cyclic Tour (二分匹配KM最小权值 或 最小费用最大流)

    Cyclic Tour Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/65535 K (Java/Others)Total ...

  6. HDU 3488 Tour (最大权完美匹配)【KM算法】

    <题目链接> 题目大意:给出n个点m条单向边边以及经过每条边的费用,让你求出走过一个哈密顿环(除起点外,每个点只能走一次)的最小费用.题目保证至少存在一个环满足条件. 解题分析: 因为要求 ...

  7. POJ 3790 最短路径问题(Dijkstra变形——最短路径双重最小权值)

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3790 Problem Description 给你n个点,m条无向边,每条边都有长度d和花费p,给你 ...

  8. POJ 1797 Heavy Transportation(Dijkstra变形——最长路径最小权值)

    题目链接: http://poj.org/problem?id=1797 Background Hugo Heavy is happy. After the breakdown of the Carg ...

  9. POJ-1797.HeavyTransportation(最长路中的最小权值)

    本题思路:最短路变形,改变松弛方式即可,dist存的是源结点到当前结点的最长路的最小权值. 参考代码: #include <cstdio> #include <cstring> ...

随机推荐

  1. Android Activity 半透明效果(Translucent)

    本文转自:http://norety.javaeye.com/blog/648725 今天试着做activity半透明的效果,做出来之后才发现想复杂了!很简单的几句就可以实现,不多说了,贴代码! 1. ...

  2. postgresql----时间类型

    postgresql支持的时间类型如下图所示: 日期 date: 建议日期的输入格式为1997-01-01,虽然也支持19970101,1/1/1997,Jan-1-1997等多种格式. 时间戳 ti ...

  3. Log4j最简入门及实例

    Log4j真的很简单,简单到令人发指的地步.不是要记录日志吗?那就给你一个Log,然后你用Log来写东西就行了,先来一个完整类示例: package test; import org.apache.c ...

  4. RSA library

  5. 控制HttpContext为null

    直接new一个 HttpContextBase _HttpContext= new HttpContextWrapper(System.Web.HttpContext.Current);

  6. xutil3 post 和 get请求

    https://i.cnblogs.com/EditPosts.aspx?postid=7001253 compile 'org.xutils:xutils:3.3.36' 注册xutil3 < ...

  7. Mysql学习笔记—concat以及group_concat的用法(转载)

    本文中使用的例子均在下面的数据库表tt2下执行: 一.concat()函数 1.功能:将多个字符串连接成一个字符串. 2.语法:concat(str1, str2,...) 返回结果为连接参数产生的字 ...

  8. Java基础反射(二)

    原文地址http://blog.csdn.net/sinat_38259539/article/details/71799078 反射是框架设计的灵魂 (使用的前提条件:必须先得到代表的字节码的Cla ...

  9. testng日志和报告

    TestNG是通过 Listeners 或者 Reporters 生成测试报告. Listeners,即 org.testng.ITestListener 的实现,能够在测试执行过程中发出各种测试结果 ...

  10. activiti整合spring

    activiti的配置文件其实就是一份spring的配置文件,只是默认将processEngineConfiguration做为一个bean来读取. 当和spring进一步整合时,需要使用 Sprin ...