SGU 206. Roads
206. Roads
time limit per test: 0.5 sec.
memory limit per test: 65536 KB
input: standard
output: standard
The kingdom of Farland has N cities connected by M roads. Some roads are paved with stones, others are just country roads. Since paving the road is quite expensive, the roads to be paved were chosen in such a way that for any two cities there is exactly one way to get from one city to another passing only the stoned roads.
The kingdom has a very strong bureaucracy so each road has its own ordinal number ranging from 1 to M: the stoned roads have numbers from 1 to N-1 and other roads have numbers from N to M. Each road requires some money for support, i-th road requires ci coins per year to keep it intact. Recently the king has decided to save some money and keep financing only some roads. Since he wants his people to be able to get from any city to any other, he decided to keep supporting some roads in such a way, that there is still a path between any two cities.
It might seem to you that keeping the stoned roads would be the good idea, however the king did not think so. Since he did not like to travel, he did not know the difference between traveling by a stoned road and travelling by a muddy road. Thus he ordered you to bring him the costs of maintaining the roads so that he could order his wizard to choose the roads to keep in such a way that the total cost of maintaining them would be minimal.
Being the minister of communications of Farland, you want to help your people to keep the stoned roads. To do this you want to fake the costs of maintaining the roads in your report to the king. That is, you want to provide for each road the fake cost of its maintaining di in such a way, that stoned roads form the set of roads the king would keep. However, to lower the chance of being caught, you want the value of sum(i = 1..M, |ci-di|) to be as small as possible.
You know that the king's wizard is not a complete fool, so if there is the way to choose the minimal set of roads to be the set of the stoned roads, he would do it, so ties are allowed.
Input
The first line of the input file contains N and M (2 ≤ N ≤ 60, N-1 ≤ M ≤ 400). Next M lines contain three integer numbers ai, bi and ci each — the numbers of the cities the road connects (1 ≤ ai ≤ N, 1 ≤ bi ≤ N, ai ≠ bi) and the cost of maintaining it (1 ≤ ci ≤ 10 000).
Output
Output M lines — for each road output di that should be reported to be its maintainance cost so that he king would choose first N-1 roads to be the roads to keep and the specified sum is minimal possible.
Sample test(s)
Input
4 5
4 1 7
2 1 5
3 4 4
4 2 5
1 3 1
Output
4
5
4
5
4
题意
给你m条带权边,保证前n-1条边成为一颗树,要求改变边的权值,使得最小生成树为前n-1条边,求最小改变量方案。
很棒的一道非常经典的匹配模型的题!早在1999年,网络流大牛Ahuja(《Network Flows: Theory, Algorithms and Applications》的作者)就对此进行了研究,并提出了\(O(n^2\log n)\)的优秀算法(但是由于没有使用Tex导致排版很DT。。不过好在不影响阅读)。链接在此。
该问题被称为 Inverse Spanning Tree Problem
摘录ABSTRACT如下:
In this paper, we consider the inverse spanning tree problem. Given an undirected graph G0 = (N0, A0)with n nodes, m arcs, an arc cost vector c, and a spanning tree T0, the inverse spanning tree problem is toperturb the arc cost vector c to a vector d so that T0 is a minimum spanning tree with respect to the costvector d and the cost of perturbation given by |d – c| = |d c |ij ij (i, j) A − is minimum. We show that the dual of the inverse spanning tree problem is a bipartite node weighted matching problem on a specially structured graph (which we call the path graph) that contains m nodes and as many as (m-n+1)(n-1) = O(nm) arcs. We first transform the bipartite node weighted matching problem into a specially structured minimum cost flow problem and use its special structure to develop an O(n3) algorithm. We next use its special structure more effectively and develop an O(n2 log n) time algorithm. This improves the previous O(n3) time algorithm due to Sokkalingam, Ahuja and Orlin [1999].
作者对该问题建立网络流模型,得到\(O(n^3)\)的解决方案,然后又通过use its special structure more effectively得到\(O(n^2\log n)\)的计算方式,而非动态树优化。。。Tarjan逆天。。常数大到爆。原话:
The algorithm given in Figure 1 can also be implemented in \(O(n^2 \log n)\) time using the dynamic tree data structure due to Sleator and Tarjan [1983]. However,the dynamic tree data structure has large computational overhead and is difficult to implement. In the next section, we describe another \(O(n^2 \log n)\) algorithm that is simpler and is easier to implement. In fact, our improved implementation of the node weighted matching algorithm is the same as the one described above, except that it is carried out on a transformed network.
如下为\(O(n^3)\)的做法,使用加slack优化的KM算法。
首先注意到:如果最开始的边是最小生成树上的边,那么就要求在后面的边在加入到树后形成的环内为环上最大权边,否则就可以把要求的边更新掉。不妨设Akane[i]为边i的边权值,Ranma[i]为边i需要改变的值,那么对于加入的第n~m条内的边k,要求对环内每条Akane值大于加入边值的边j都有:Akane[k] <= Akane[j],Akane[j]-Ranma[j]<= Akane[k]+Ranma[k],移项得:Akane[j]-Akane[k]<=Ranma[j] +Ranma[k],左边为常量,右边是我们要均衡分配的权值,而这正是KM匹配算法的标准形式,如是我们可以建立模型,从而解决此问题。
至于\(O(n^2\log n)\)的做法,sbit略感兴趣,但最近有点忙(改noi(p)模拟题。。),留个坑,如果您对此也有兴趣,欢迎和sbit讨论。。(可以增长见识 出题时卡时限 啊什么的。。。)
#include <bits/stdc++.h>
#define rep(_i, _j) for(int _i = 1; _i <= _j; ++_i)
const int INF = 0x3f3f3f3f;
typedef long long LL;
typedef double DB;
using namespace std;
const int maxn = 60 + 5;
const int maxd = 400 + 20;
struct Edge {
int edge, head[maxn], cost[maxn * 2], to[maxn * 2], next[maxn * 2];
Edge() {
edge = 0;
memset(head, -1, sizeof head);
}
void addedge(int u, int v, int c) {
next[edge] = head[u];
cost[edge] = c;
to[edge] = v;
head[u] = edge++;
}
} E;
int n, m;
int g[maxd][maxd], c[maxd];
bool calc(int p, int fa, int goal, int id, int cost) {
if(p == goal) return true;
for(int i = E.head[p]; i != -1; i = E.next[i]) {
if(E.to[i] != fa && calc(E.to[i], p, goal, id, cost)) {
g[i >> 1][id] = max(g[i >> 1][id], E.cost[i] - cost);
return true;
}
}
return false;
}
bool visx[maxd], visy[maxd];
int link[maxd], lx[maxd], ly[maxd], N, slack;
bool dfs(int u) {
visx[u] = true;
for(int i = 0, tmp; i < N; ++i) if(!visy[i]) {
tmp = lx[u] + ly[i] - g[u][i];
if(tmp == 0) {
visy[i] = true;
if(link[i] == -1 || dfs(link[i])) {
link[i] = u;
return true;
}
} else {
slack = min(slack, tmp);
}
}
return false;
}
int main() {
#ifndef ONLINE_JUDGE
freopen("206.in", "r", stdin); freopen("206.out", "w", stdout);
#endif
scanf("%d%d", &n, &m);
--n, m -= n;
for(int i = 0, a, b, t; i < n; ++i) {
scanf("%d%d%d", &a, &b, &t);
E.addedge(a, b, t), E.addedge(b, a, t);
}
memset(g, 0, sizeof g);
for(int i = 0, a, b; i < m; ++i) {
scanf("%d%d%d", &a, &b, &c[i]);
calc(a, -1, b, i, c[i]);
}
N = max(n, m);
memset(link, -1, sizeof link);
for(int i = 0; i < N; ++i) {
for(int j = 0; j < N; ++j) {
lx[i] = max(lx[i], g[i][j]);
}
}
for(int i = 0; i < N; ++i) {
for(;;) {
slack= INF;
memset(visx, false, sizeof(visx[0]) * N);
memset(visy, false, sizeof(visy[0]) * N);
if(dfs(i)) break;
for(int j = 0; j < N; ++j) {
if(visx[j]) lx[j] -= slack;
if(visy[j]) ly[j] += slack;
}
}
}
for(int i = 0; i < n; ++i) {
printf("%d\n", E.cost[i << 1] - lx[i]);
}
for(int i = 0; i < m; ++i) {
printf("%d\n", ly[i] + c[i]);
}
return 0;
}
SGU 206. Roads的更多相关文章
- [转] POJ图论入门
最短路问题此类问题类型不多,变形较少 POJ 2449 Remmarguts' Date(中等)http://acm.pku.edu.cn/JudgeOnline/problem?id=2449题意: ...
- 图论常用算法之一 POJ图论题集【转载】
POJ图论分类[转] 一个很不错的图论分类,非常感谢原版的作者!!!在这里分享给大家,爱好图论的ACMer不寂寞了... (很抱歉没有找到此题集整理的原创作者,感谢知情的朋友给个原创链接) POJ:h ...
- SGU 185 Two shortest
Two shortest Time Limit: 500ms Memory Limit: 4096KB This problem will be judged on SGU. Original ID: ...
- PIC10F200/202/204/206/220/222/320/322芯片解密程序复制多少钱?
PIC10F200/202/204/206/220/222/320/322芯片解密程序复制多少钱? PIC10F单片机芯片解密型号: PIC10F200解密 | PIC10F202解密 | PIC10 ...
- poj 1251 Jungle Roads (最小生成树)
poj 1251 Jungle Roads (最小生成树) Link: http://poj.org/problem?id=1251 Jungle Roads Time Limit: 1000 ...
- Jungle Roads[HDU1301]
Jungle Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tota ...
- POJ1947 Rebuilding Roads[树形背包]
Rebuilding Roads Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 11495 Accepted: 5276 ...
- Constructing Roads——F
F. Constructing Roads There are N villages, which are numbered from 1 to N, and you should build som ...
- leetcode 206
206. Reverse Linked List Reverse a singly linked list. 翻转一个单链表. 代码如下: /** * Definition for singly-li ...
随机推荐
- 居中div,居中浮动的元素
定位法:position:absolute 如果子级div有定义宽和高的话就可以用这个方法.注意:margin-top,和margin-left的值均为高和宽值的一半 margin:auto法 这个也 ...
- [DeeplearningAI笔记]序列模型2.3-2.5余弦相似度/嵌入矩阵/学习词嵌入
5.2自然语言处理 觉得有用的话,欢迎一起讨论相互学习~Follow Me 2.3词嵌入的特性 properties of word embedding Mikolov T, Yih W T, Zwe ...
- SpringCloud学习(1)——SpringCloud概述
微服务架构: 微服务架构是一种架构模式或者说是一种架构风格, 他提倡将单一应用程序划分成一组小的服务, 每个服务运行在其独立的进程中, 服务之间互相协调,互相配合, 为用户提供最终价值.服务之间采用轻 ...
- javascript 实现 A-star 寻路算法
在游戏开发中,又一个很常见的需求,就是让一角色从A点走到B点,而我们期望所走的路是最短的,最容易想到的就是两点之间直线最短,我们可以通过勾股定理来求出两点之间的距离,但这个情况只能用于两点之间没有障碍 ...
- Dubbo 的应用
--- 用于大规模服务化,通过在消费方获取服务提供方的地址列表,实现负载均衡,减轻服务器压力. 最简单调用图 节点角色说明: l Provider: 暴露服务的服务提供方. l Consumer ...
- ZOJ 3780 E - Paint the Grid Again 拓扑排序
https://vjudge.net/problem/49919/origin 题意:给你n*n只出现O和X的字符阵.有两种操作,一种操作Ri将i行全变成X,一种操作Ci将i列全变成O,每个不同的操作 ...
- ASP.NET网站伪静态下使用中文URL
首先解释一下,什么是中文URL呢?它并不是我们常见的把汉字编码为 %CF%EC 这种形式,而是在URL中直接使用汉字 这种形式目前还不是很多见.因为不同的浏览器处理起来可能会有所不同,不过据我测试,I ...
- C语言中的序列点
TAG: C, 序列点 DATE: 2013-08-07 序列点是程序执行序列中一些特殊的点. 当有序列点存在时,序列点前面的表达式必须求值完毕,并且副作用也已经发生, 才会计算序列点后面的表达式和其 ...
- 快速入门react
安装react npm install creat-react-app -g这里直接安装react的一个脚手架,里面包含了要用到的许多东西,帮助快速入门react 创建新项目 create-react ...
- 2017ACM暑期多校联合训练 - Team 4 1003 HDU 6069 Counting Divisors (区间素数筛选+因子数)
题目链接 Problem Description In mathematics, the function d(n) denotes the number of divisors of positiv ...