HDU 3488 Tour(最小费用流:有向环最小权值覆盖)
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
- #include<iostream>
- #include<cstdio>
- #include<cmath>
- #include<cstring>
- #include<queue>
- using namespace std;
- typedef long long LL;
- const int maxn=+;
- const int INF=0x3f3f3f3f;
- struct Edge
- {
- int from, to, cap, flow, cost;
- Edge(int u, int v, int c, int f, int w) :from(u), to(v), cap(c), flow(f), cost(w) {}
- };
- struct MCMF
- {
- int n, m;
- vector<Edge> edges;
- vector<int> G[maxn];
- int inq[maxn];
- int d[maxn];
- int p[maxn];
- int a[maxn];
- void init(int n)
- {
- this->n = n;
- for (int i = ; i<n; i++) G[i].clear();
- edges.clear();
- }
- void AddEdge(int from, int to, int cap, int cost)
- {
- edges.push_back(Edge(from, to, cap, , cost));
- edges.push_back(Edge(to, from, , , -cost));
- m = edges.size();
- G[from].push_back(m - );
- G[to].push_back(m - );
- }
- bool BellmanFord(int s, int t, int &flow, LL & cost)
- {
- for (int i = ; i<n; i++) d[i] = INF;
- memset(inq, , sizeof(inq));
- d[s] = ; inq[s] = ; p[s] = ; a[s] = INF;
- queue<int> Q;
- Q.push(s);
- while (!Q.empty()){
- int u = Q.front(); Q.pop();
- inq[u] = ;
- for (int i = ; i<G[u].size(); i++){
- Edge& e = edges[G[u][i]];
- if (e.cap>e.flow && d[e.to]>d[u] + e.cost){
- d[e.to] = d[u] + e.cost;
- p[e.to] = G[u][i];
- a[e.to] = min(a[u], e.cap - e.flow);
- if (!inq[e.to]) { Q.push(e.to); inq[e.to] = ; }
- }
- }
- }
- if (d[t] == INF) return false;
- flow += a[t];
- cost += (LL)d[t] * (LL)a[t];
- for (int u = t; u != s; u = edges[p[u]].from){
- edges[p[u]].flow += a[t];
- edges[p[u] ^ ].flow -= a[t];
- }
- return true;
- }
- void MincostMaxdflow(int s, int t, LL & cost)
- {
- int flow = ; cost = ;
- while (BellmanFord(s, t, flow, cost) );
- //return flow;
- }
- }t;
- int n,m;
- int main()
- {
- //freopen("D:\\input.txt", "r", stdin);
- int T;
- scanf("%d",&T);
- int u,v,d;
- while(T--)
- {
- scanf("%d%d",&n,&m);
- int src=,dst=*n+;
- t.init(dst+);
- for(int i=;i<=n;i++)
- {
- t.AddEdge(src,i,,);
- t.AddEdge(i+n,dst,,);
- }
- for(int i=;i<m;i++)
- {
- scanf("%d%d%d",&u,&v,&d);
- t.AddEdge(u,v+n,,d);
- }
- long long cost;
- t.MincostMaxdflow(src,dst,cost);
- printf("%d\n",cost);
- }
- return ;
- }
HDU 3488 Tour(最小费用流:有向环最小权值覆盖)的更多相关文章
- HDU 1853 Cyclic Tour[有向环最小权值覆盖]
Cyclic Tour Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/65535 K (Java/Others)Total ...
- Tour HDU - 3488 有向环最小权值覆盖 费用流
http://acm.hdu.edu.cn/showproblem.php?pid=3488 给一个无源汇的,带有边权的有向图 让你找出一个最小的哈密顿回路 可以用KM算法写,但是费用流也行 思路 1 ...
- Hdu 3488 Tour (KM 有向环覆盖)
题目链接: Hdu 3488 Tour 题目描述: 有n个节点,m条有权单向路,要求用一个或者多个环覆盖所有的节点.每个节点只能出现在一个环中,每个环中至少有两个节点.问最小边权花费为多少? 解题思路 ...
- ZOJ-2342 Roads 二分图最小权值覆盖
题意:给定N个点,M条边,M >= N-1.已知M条边都有一个权值,已知前N-1边能构成一颗N个节点生成树,现问通过修改这些边的权值使得最小生成树为前N条边的最小改动总和为多少? 分析:由于计算 ...
- hdu 1853 Cyclic Tour (二分匹配KM最小权值 或 最小费用最大流)
Cyclic Tour Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/65535 K (Java/Others)Total ...
- HDU 3488 Tour (最大权完美匹配)【KM算法】
<题目链接> 题目大意:给出n个点m条单向边边以及经过每条边的费用,让你求出走过一个哈密顿环(除起点外,每个点只能走一次)的最小费用.题目保证至少存在一个环满足条件. 解题分析: 因为要求 ...
- POJ 3790 最短路径问题(Dijkstra变形——最短路径双重最小权值)
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=3790 Problem Description 给你n个点,m条无向边,每条边都有长度d和花费p,给你 ...
- POJ 1797 Heavy Transportation(Dijkstra变形——最长路径最小权值)
题目链接: http://poj.org/problem?id=1797 Background Hugo Heavy is happy. After the breakdown of the Carg ...
- POJ-1797.HeavyTransportation(最长路中的最小权值)
本题思路:最短路变形,改变松弛方式即可,dist存的是源结点到当前结点的最长路的最小权值. 参考代码: #include <cstdio> #include <cstring> ...
随机推荐
- Android Activity 半透明效果(Translucent)
本文转自:http://norety.javaeye.com/blog/648725 今天试着做activity半透明的效果,做出来之后才发现想复杂了!很简单的几句就可以实现,不多说了,贴代码! 1. ...
- postgresql----时间类型
postgresql支持的时间类型如下图所示: 日期 date: 建议日期的输入格式为1997-01-01,虽然也支持19970101,1/1/1997,Jan-1-1997等多种格式. 时间戳 ti ...
- Log4j最简入门及实例
Log4j真的很简单,简单到令人发指的地步.不是要记录日志吗?那就给你一个Log,然后你用Log来写东西就行了,先来一个完整类示例: package test; import org.apache.c ...
- RSA library
- 控制HttpContext为null
直接new一个 HttpContextBase _HttpContext= new HttpContextWrapper(System.Web.HttpContext.Current);
- xutil3 post 和 get请求
https://i.cnblogs.com/EditPosts.aspx?postid=7001253 compile 'org.xutils:xutils:3.3.36' 注册xutil3 < ...
- Mysql学习笔记—concat以及group_concat的用法(转载)
本文中使用的例子均在下面的数据库表tt2下执行: 一.concat()函数 1.功能:将多个字符串连接成一个字符串. 2.语法:concat(str1, str2,...) 返回结果为连接参数产生的字 ...
- Java基础反射(二)
原文地址http://blog.csdn.net/sinat_38259539/article/details/71799078 反射是框架设计的灵魂 (使用的前提条件:必须先得到代表的字节码的Cla ...
- testng日志和报告
TestNG是通过 Listeners 或者 Reporters 生成测试报告. Listeners,即 org.testng.ITestListener 的实现,能够在测试执行过程中发出各种测试结果 ...
- activiti整合spring
activiti的配置文件其实就是一份spring的配置文件,只是默认将processEngineConfiguration做为一个bean来读取. 当和spring进一步整合时,需要使用 Sprin ...