hdoj 3072 Intelligence System【求scc&&缩点】【求连通所有scc的最小花费】
Intelligence System
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1904 Accepted Submission(s): 824
Now, kzc_tc, the head of the Intelligence Department (his code is once 48, but now 0), is sudden obtaining important information from one Intelligence personnel. That relates to the strategic direction and future development of the situation of ALPC. So it need for emergency notification to all Intelligence personnel, he decides to use the intelligence system (kzc_tc inform one, and the one inform other one or more, and so on. Finally the information is known to all).
We know this is a dangerous work. Each transmission of the information can only be made through a fixed approach, from a fixed person to another fixed, and cannot be exchanged, but between two persons may have more than one way for transferring. Each act of the transmission cost Ci (1 <= Ci <= 100000), the total cost of the transmission if inform some ones in our ALPC intelligence agency is their costs sum.
Something good, if two people can inform each other, directly or indirectly through someone else, then they belong to the same branch (kzc_tc is in one branch, too!). This case, it’s very easy to inform each other, so that the cost between persons in the same branch will be ignored. The number of branch in intelligence agency is no more than one hundred.
As a result of the current tensions of ALPC’s funds, kzc_tc now has all relationships in his Intelligence system, and he want to write a program to achieve the minimum cost to ensure that everyone knows this intelligence.
It's really annoying!
In each case, the first line is an Integer N (0< N <= 50000), the number of the intelligence personnel including kzc_tc. Their code is numbered from 0 to N-1. And then M (0<= M <= 100000), the number of the transmission approach.
The next M lines, each line contains three integers, X, Y and C means person X transfer information to person Y cost C.
Believe kzc_tc’s working! There always is a way for him to communicate with all other intelligence personnel.
题意:有N个人编号从0到N-1,给出M组关系<u,v,w>表示u联系v需要费用w(但不代表v联系u需要费用w)。若一个集合中 任意两个人可以互相联系(不管是直接联系的还是通过其他人间接联系的),那么在这个集合里面联系的费用可以忽略。现在你是编号0,问你联系到所有人的最小费用。题目保证至少有一组方案使得你可以联系到所有人。
题解:求出所有的scc,因为同一个scc中的人相互通知不需要花费,所以总花费是连接所有scc的花费
在缩点的过程同时更新连接scc所需要的最小花费 最后累加即可
- #include<stdio.h>
- #include<string.h>
- #include<stack>
- #include<algorithm>
- #define MAX 100010
- #define INF 0x3f3f3f
- #include<vector>
- using namespace std;
- int n,m;
- int head[MAX],ans;
- int low[MAX],dfn[MAX];
- int sccno[MAX];
- int scccnt,dfsclock;
- vector<int>scc[MAX];
- vector<int>newmap[MAX];
- stack<int>s;
- int instack[MAX],money[MAX];
- struct node
- {
- int beg,end,next;
- int cost;
- }edge[MAX];
- void init()
- {
- ans=0;
- memset(head,-1,sizeof(head));
- }
- void add(int beg,int end,int cost)
- {
- edge[ans].beg=beg;
- edge[ans].end=end;
- edge[ans].cost=cost;
- edge[ans].next=head[beg];
- head[beg]=ans++;
- }
- void getmap()
- {
- int a,b,c,i;
- while(m--)
- {
- scanf("%d%d%d",&a,&b,&c);
- add(a,b,c);
- }
- }
- void tarjan(int u)
- {
- int i,v;
- s.push(u);
- instack[u]=1;
- low[u]=dfn[u]=++dfsclock;
- for(i=head[u];i!=-1;i=edge[i].next)
- {
- v=edge[i].end;
- if(!dfn[v])
- {
- tarjan(v);
- low[u]=min(low[u],low[v]);
- }
- else if(instack[v])
- low[u]=min(low[u],dfn[v]);
- }
- if(low[u]==dfn[u])
- {
- scccnt++;
- while(1)
- {
- v=s.top();
- s.pop();
- instack[v]=0;
- sccno[v]=scccnt;
- if(v==u)
- break;
- }
- }
- }
- void find(int l,int r)
- {
- memset(low,0,sizeof(low));
- memset(dfn,0,sizeof(dfn));
- memset(instack,0,sizeof(instack));
- memset(sccno,0,sizeof(sccno));
- dfsclock=scccnt=0;
- for(int i=l;i<=r;i++)
- {
- if(!dfn[i])
- tarjan(i);
- }
- }
- void suodian()
- {
- int i;
- for(i=1;i<=scccnt;i++)
- {
- newmap[i].clear();
- money[i]=INF;
- }
- for(i=0;i<ans;i++)
- {
- int u=sccno[edge[i].beg];
- int v=sccno[edge[i].end];
- if(u!=v)//u不等于v证明u和v不在同一个scc,则u-->v这条边是连接两个scc的边,
- { //拿这条边和其他的可以连接这两个scc的边比较取最小值
- newmap[u].push_back(v);
- money[v]=min(edge[i].cost,money[v]);
- }
- }
- }
- void solve()
- {
- int i,j;
- int sum=0;
- for(i=1;i<=scccnt;i++)
- {
- if(sccno[0]!=i)//0所在的scc不需要花费,因为消息就是从这里来的
- sum+=money[i];
- }
- printf("%d\n",sum);
- }
- int main()
- {
- while(scanf("%d%d",&n,&m)!=EOF)
- {
- init();
- getmap();
- find(0,n-1);
- suodian();
- solve();
- }
- return 0;
- }
hdoj 3072 Intelligence System【求scc&&缩点】【求连通所有scc的最小花费】的更多相关文章
- HDU 3072 Intelligence System(tarjan染色缩点+贪心+最小树形图)
Intelligence System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- hdu 3072 Intelligence System(Tarjan 求连通块间最小值)
Intelligence System Time Limit : 2000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Other) ...
- HDU 3072 Intelligence System (强连通分量)
Intelligence System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- HDU——3072 Intelligence System
Intelligence System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- HDU——T 3072 Intelligence System
http://acm.hdu.edu.cn/showproblem.php?pid=3072 Time Limit: 2000/1000 MS (Java/Others) Memory Limi ...
- HDU - 3072 Intelligence System
题意: 给出一个N个节点的有向图.图中任意两点进行通信的代价为路径上的边权和.如果两个点能互相到达那么代价为0.问从点0开始向其余所有点通信的最小代价和.保证能向所有点通信. 题解: 求出所有的强连通 ...
- Intelligence System (hdu 3072 强联通缩点+贪心)
Intelligence System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- HDU 3072--Intelligence System【SCC缩点新构图 && 求连通全部SCC的最小费用】
Intelligence System Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- HDU 3072 SCC Intelligence System
给出一个带权有向图,要使整个图连通.SCC中的点之间花费为0,所以就先缩点,然后缩点后两点之间的权值为最小边的权值,把这些权值累加起来就是答案. #include <iostream> # ...
随机推荐
- PHP5.5安装php-redis扩展
windows下开发用的xampp集成的环境,想装个php-redis扩展,扩展的github地址: https://github.com/nicolasff/phpredis 描述里找到window ...
- TDirectory.GetDirectoryRoot获取指定目录的根目录
使用函数: System.IOUtils.TDirectory.GetDirectoryRoot 函数定义: class function GetDirectoryRoot(const Path: s ...
- CentOS下Redis 2.2.14安装配置详解(转载)
一. 下载redis最新版本2.2.14 cd /usr/local/src wget –c http://redis.googlecode.com/files/redis-2.2.14.tar.gz ...
- Codeforces Round #336 (Div. 2) D. Zuma
Codeforces Round #336 (Div. 2) D. Zuma 题意:输入一个字符串:每次消去一个回文串,问最少消去的次数为多少? 思路:一般对于可以从中间操作的,一般看成是从头开始(因 ...
- MDK常用快捷键
一.常用编译相关的快捷键 1.编译(单个文件) Ctrl+F7 2.连接 F7 二.常用调试相关的快捷键 1.运行/停止 Ctrl+F5 2.Run(全速运行) F5 3.Stop Deb ...
- 详解C/C++函数指针声明
要理解一个C程序,仅仅理解组成该程序的符号是不够的.程序员还必须理解这些符号是如何组合成声明.表达式.语句和程序的. 我们先来看看下面的一个语句: 1 ( *( void(*)())0)(); 这是当 ...
- ipad ------ 与iPhone的差别
1. 差异 iPhone是手机,iPad.iPad Mini是平板电脑 iPhone和iPad开发的区别 屏幕的尺寸 \分辨率 UI元素的排布 \设计 键盘 API 屏幕方向的支持 … … 2. iP ...
- Solr4.8.0源码分析(27)之ImplicitDocRouter和CompositeIdRouter
同样在公司工作中发现了一个现象, 1.我用/solr/admin/collections?action=CREATE&name=collection&numShards=3&r ...
- structDemo1
structDemo1 # include <iostream.h> # include <malloc.h> enum EType{ One = ,Tow,Three }; ...
- POJ 2892 Tunnel Warfare || HDU 1540(树状数组+二分 || 线段树的单点更新+区间查询)
点我看题目 题意 :N个村子连成一条线,相邻的村子都有直接的地道进行相连,不相连的都由地道间接相连,三个命令,D x,表示x村庄被摧毁,R ,表示最后被摧毁的村庄已经重建了,Q x表示,与x直接或间 ...