HDU 2121 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): 3115    Accepted Submission(s): 737

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

设一个虚根 , 给它到所有点弄一条边,权值足够大 。

不进行删边操作,记录边作为ans2,然后就是 ans2 - m 就是最后要输出的答案了 。

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <vector>

using namespace std ;
typedef long long LL ;
const double inf = 1e9+7;
const int N = 1010;
const int M = 40010;

struct edge {
    int u , v ;
    LL w;
}e[M];
int n , m , ans2 ;
int pre[N] , id[N] , vis[N] ;
LL in[N] ;
LL zhuliu( int root , int n , int m ) {
    LL res = 0 ; int u , v ;
    while(1) {
        for( int i = 0 ; i < n ; ++i ) in[i] = inf ;

        for( int i = 0 ; i < m ; ++i )
            if( e[i].u != e[i].v && e[i].w < in[e[i].v] ) {
                pre[e[i].v] = e[i].u;
                if( e[i].u == root ) ans2 = i ;
                in[e[i].v] = e[i].w;
            }
        for( int i = 0 ; i < n ; ++i )
            if( i != root && in[i] == inf )
                return -1 ;
        int tn = 0 ;
        memset( id , -1 , sizeof id );
        memset( vis , -1 , sizeof vis );
        in[root] = 0 ;
        for( int i = 0 ; i < n ; ++i ) {
            res += in[i];
            v = i ;
            while( vis[v] != i && id[v] == -1 && v != root ) {
                vis[v] = i ;
                v = pre[v] ;
            }
            if( v != root && id[v] == -1 ) {
                for( int u = pre[v] ; u != v ; u = pre[u] )
                    id[u] = tn ;
                id[v] = tn++ ;
            }
        }
        if( tn == 0 ) break ; // no circle
        for( int i = 0 ; i < n ; ++i ) if( id[i] == -1 ) {
            id[i] = tn++ ;
        }
        for( int i = 0 ; i < m ; ++i ){
            v = e[i].v;
            e[i].u = id[e[i].u];
            e[i].v = id[e[i].v];
            if( e[i].u != e[i].v )
                e[i].w -= in[v];
        }
        n = tn ;
        root = id[root];
    }
    return res ;
}
int main ()  {
//    freopen("in.txt","r",stdin);
    int _ , cas = 1 ;
    while( ~scanf("%d%d",&n,&m) ) {
        LL sum = 1 ;
        for( int i = 0 ; i < m ; ++i ) {
            scanf("%d%d%I64d",&e[i].u,&e[i].v,&e[i].w);
            sum += e[i].w;
        }
        int L = m ;
        for( int i = 0 ; i < n ; ++i ) {
            e[L].u = n , e[L].v = i , e[L++].w = sum ;
        }
        LL ans = zhuliu( n , n + 1 , L );
        if( ans == -1 || ans >= 2 * sum )
            puts("impossible");
        else {
            ans -= sum ;
            printf("%I64d %d\n",ans,ans2 - m);
        }
        puts("");
    }
}

时间: 2024-11-14 09:24:58

HDU 2121 Ice_cream’s world II(无定根最小树形图)的相关文章

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

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

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

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

hdu 2121 Ice_cream’s world II

真的是一下午都砸在这题上了 不对 是从上午10点到现在都砸掉了 啊啊啊啊啊啊啊啊我有毒吧!!!!!!! 我真的是不想再看到这道题了 卡了电脑3遍啊啊啊啊啊为什么!!!!! 生无可恋脸 1 #include<iostream> 2 #include<cstdio> 3 #include<cstdlib> 4 #include<cstring> 5 #include<algorithm> 6 #include<string> 7 #def

HDU - 2121 Ice_cream’s world II(朱刘算法+虚根)

题目大意:给你N个点,M条有向边,问以哪个点为根结点时,能使最小生成树总权值达到最小,输出总权值和根. 如果构不成最小生成树,另外输出 解题思路:这题很巧妙,暴力枚举的话,肯定TLE,所以,这题就需要点技巧了 可以设一个虚根,虚根连接每一个点,权值为所有边的总权值+1.接着,以虚根为根,跑朱刘算法. 跑出结果后,要判断一下,如果最小生成树的总权值比2 * (所有边的总权值+1)还要大,表示虚根至少和两个点相连了,这样最小生成树就是棵假的最小生成树了,因为至少有两个点入度为0了 得到结果时要怎么找

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

hdoj 2121 Ice_cream’s world II 【没有最低树的根节点】

称号:pid=2121" target="_blank">hdoj 2121 Ice_cream's world II 题意:题目是一道躶题,给n个点,m条边的有向图.然后找一个点.到全部点的距离和最小.找出这个点并输入距离. 分析:非常明显是求一个最小树形图,可是没有说根节点.要找跟节点,我们能够虚拟一个节 点 x .x 到全部节点连边距离为前面全部距离和+1为 dis . 然后从x 节点求一次最小树形图为ans,则ans - dis 就是最小树形图的距离. 假设图不

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

无根最小树形图模板

1 #include<iostream> 2 using namespace std; 3 #include<cstdio> 4 #include<cstring> 5 #define MAXN 1005 6 #define INF 0x7f7f7f7f 7 typedef __int64 type; 8 struct node//边的权和顶点 9 { 10 int u, v; 11 type w; 12 }edge[MAXN * MAXN]; 13 int pre[M

定根最小树形图 朱刘算法 luogu P4716

https://www.luogu.org/problem/P4716 #include<bits/stdc++.h> #define ll long long #define rep(ii,a,b) for(int ii=a;ii<=b;++ii) #define per(ii,a,b) for(int ii=b;ii>=a;--ii) #define forn(i,x,g,e) for(int i=g[x];i;i=e[i].next) #define IO ios::sync