HDU2121 Ice_cream’s world II —— 最小树形图 + 超级点

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2121

Ice_cream’s world II

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 5832    Accepted Submission(s): 1493

Problem Description

After awarded lands to ACMers, the queen want to choose a city be her capital. This is an important event in ice_cream world, and it also a very difficult problem, because the world have N cities and M roads, every road was directed. Wiskey is a chief engineer in ice_cream world. The queen asked Wiskey must find a suitable location to establish the capital, beautify the roads which let capital can visit each city and the project’s cost as less as better. If Wiskey can’t fulfill the queen’s require, he will be punishing.

Input

Every case have two integers N and M (N<=1000, M<=10000), the cities numbered 0…N-1, following M lines, each line contain three integers S, T and C, meaning from S to T have a road will cost C.

Output

If no location satisfy the queen’s require, you must be output “impossible”, otherwise, print the minimum cost in this project and suitable city’s number. May be exist many suitable cities, choose the minimum number city. After every case print one blank.

Sample Input

3 1
0 1 1

4 4
0 1 10
0 2 10
1 3 20
2 3 30

Sample Output

impossible

40 0

Author

Wiskey

Source

HDU 2007-10 Programming Contest_WarmUp

代码如下:

  1 #include <iostream>
  2 #include <cstdio>
  3 #include <algorithm>
  4 #include <cstring>
  5 #include <cmath>
  6 using namespace std;
  7 typedef long long LL;
  8 const double EPS = 1e-6;
  9 const int INF = INT_MAX;
 10 const LL LNF = 9e18;
 11 const int MOD = 1e9+7;
 12 const int MAXN = 1e3+10;
 13
 14 struct Edge
 15 {
 16     int u, v, w;
 17 }edge[10010];
 18
 19 int super_edge, root_pos;
 20 int pre[MAXN], id[MAXN], vis[MAXN], in[MAXN];
 21
 22 int zhuliu(int root, int n, int m)
 23 {
 24     int res = 0;
 25     while(1)
 26     {
 27         for(int i = 0; i<n; i++)
 28             in[i] = INF;
 29         for(int i = 0; i<m; i++)
 30         if(edge[i].u!=edge[i].v && edge[i].w<in[edge[i].v])
 31         {
 32             pre[edge[i].v] = edge[i].u;
 33             in[edge[i].v] = edge[i].w;
 34             if(edge[i].u==root)
 35                 root_pos = i;
 36         }
 37
 38         for(int i = 0; i<n; i++)
 39             if(i!=root && in[i]==INF)
 40                 return -1;
 41
 42         int tn = 0;
 43         memset(id, -1, sizeof(id));
 44         memset(vis, -1, sizeof(vis));
 45         in[root] = 0;
 46         for(int i = 0; i<n; i++)
 47         {
 48             res += in[i];
 49             int v = i;
 50             while(vis[v]!=i && id[v]==-1 && v!=root)
 51             {
 52                 vis[v] = i;
 53                 v = pre[v];
 54             }
 55             if(v!=root && id[v]==-1)
 56             {
 57                 for(int u = pre[v]; u!=v; u = pre[u])
 58                     id[u] = tn;
 59                 id[v] = tn++;
 60             }
 61         }
 62         if(tn==0) break;
 63         for(int i = 0; i<n; i++)
 64             if(id[i]==-1)
 65                 id[i] = tn++;
 66
 67         for(int i = 0;  i<m; i++)
 68         {
 69             int v = edge[i].v;
 70             edge[i].u = id[edge[i].u];
 71             edge[i].v = id[edge[i].v];
 72             if(edge[i].u!=edge[i].v)
 73                 edge[i].w -= in[v];
 74         }
 75         n = tn;
 76         root = id[root];
 77     }
 78     return res;
 79 }
 80
 81 int main()
 82 {
 83     int n, m;
 84     while(scanf("%d%d", &n, &m)!=EOF)
 85     {
 86         super_edge = 0;
 87         for(int i = 0; i<m; i++)
 88         {
 89             scanf("%d%d%d", &edge[i].u, &edge[i].v, &edge[i].w);
 90             super_edge += edge[i].w;
 91         }
 92
 93         super_edge++;
 94         for(int i = 0; i<n; i++)
 95         {
 96             edge[m+i].u = n;
 97             edge[m+i].v = i;
 98             edge[m+i].w = super_edge;
 99         }
100
101         int ans = zhuliu(n, n+1, m+n);
102         if(ans==-1 || ans>=2*super_edge) printf("impossible\n\n");
103         else printf("%d %d\n\n", ans-super_edge, root_pos-m);
104     }
105 }

时间: 2024-09-30 19:09:08

HDU2121 Ice_cream’s world II —— 最小树形图 + 超级点的相关文章

hdu2121 Ice_cream’s world II 最小树形图(难)

这题比HDU4009要难一些.做了4009,大概知道了最小树形图的解法.拿到这题,最直接的想法是暴力.n个点试过去,每个都拿来做一次根.最后WA了,估计是超时了.(很多题都是TLE说WA,不断修改代码也看不出来错哪了). 网上的正解是添加一个虚拟根(树根),使得它与n个点都有边相连.HDU4009题这样得到的边有实际的意义,好理解.这题这样得到的边不好理解,并且边权应该是多少也有讲究.别人的解题报告中是把这些边的权值设为原本所有边的权值之和加1.这样做的目的,是为了完全把这些边与原本的边区分开.

HDOJ 2121 Ice_cream’s world II 最小树形图无根树

朱刘算法 最小树形图无根树: 建立一个虚拟的根节点,向所有节点连边,权值为其他所有边的权值和+1 在求最小树形图的时候,记录和虚拟的根相连的是哪个节点 在这题中,边是从小往大加的所以直接记录的是相连的是第几号边.... Ice_cream's world II Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3442    Accept

HDU 2121 Ice_cream’s world II 最小树形图

这个题就是需要求整个有向带权图的最小树形图,没有指定根,那就需要加一个虚根 这个虚根到每个点的权值是总权值+1,然后就可以求了,如果求出来的权值大于等于二倍的总权值,就无解 有解的情况,还需要输出最根,多解的情况,肯定是某个环上所有的点为根都可以(比如所有的点构成一个环), 这样加边的时候虚边的时候按照点的标号从小到大编,这样第一个以虚根为前驱的点也是最小的点就可以标记(标记一下) #include <iostream> #include <algorithm> #include

HDU2121 Ice_cream’s world II 【最小树形图】+【不定根】

Ice_cream's world II Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2744    Accepted Submission(s): 630 Problem Description After awarded lands to ACMers, the queen want to choose a city be he

HDU2121 Ice_cream’s world II【最小树形图】【不定根】

Ice_cream's world II Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3005    Accepted Submission(s): 704 Problem Description After awarded lands to ACMers, the queen want to choose a city be he

hdu2121 - Ice_cream’s world II(朱刘算法,不固定根)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2121 题目意思大概是要你在一些城市中选一个做首都 , 要求首都都能到其他城市 , 道路花费要最少 , 且道路都是单向的 , 这个时候就要用到最小树形图算法了 , 而且是不固定根. 不定根就是加一个虚根(原本不存在的点) , 可以让这个虚根到每个点的距离大于原本所有点连接的道路花费之和sum , 然后计算出的结果减去sum,如果比sum还大就可以认为通过这个虚拟节点我们连过原图中两个点,即原图是不连通

HDU4009 Transfer water —— 最小树形图 + 超级点

题目链接:https://vjudge.net/problem/HDU-4009 Transfer water Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 65768/65768 K (Java/Others)Total Submission(s): 5612    Accepted Submission(s): 1997 Problem Description XiaoA lives in a village. Last ye

hdoj 2121 Ice_cream’s world II 【无根节点最小树形图】

题目:hdoj 2121 Ice_cream's world II 题意:题目是一道躶题,给n个点,m条边的有向图,然后找一个点,到所有点的距离和最小,找出这个点并输入距离. 分析:很明显是求一个最小树形图,但是没有说根节点,要找跟节点,我们可以虚拟一个节 点 x ,x 到所有节点连边距离为前面所有距离和+1为 dis . 然后从x 节点求一次最小树形图为ans,则ans - dis 就是最小树形图的距离. 如果图不连通,或者ans>=2*dis 说明不存在,都则与 x 点出发的边就是结果点 A

HDU 2121 Ice_cream’s world II (不定根最小树形图)

题目地址:HDU 2121 这题没有给定根.最容易想到的当然是暴力,枚举所有的根,但是TLE是显然的..为了处理不定根的情况,可以虚拟一个根,然后用这个根去跟所有的点连边,权值为其他所有权值的和+1,目的是防止成为最小树形图的一条边.然后跑出最小树形图后,那么这个虚拟根肯定跟一个实际根相连,这时候根就找到了,然后再在最终的总花费中减去虚拟的那条边的权值就可以了. 代码如下: #include <iostream> #include <string.h> #include <m