设为首页 加入收藏

TOP

HDU 3836 Equivalent Sets(Tarjan+缩点)
2015-07-20 17:26:27 来源: 作者: 【 】 浏览:3
Tags:HDU 3836 Equivalent Sets Tarjan +缩点
Problem Description To prove two sets A and B are equivalent, we can first prove A is a subset of B, and then prove B is a subset of A, so finally we got that these two sets are equivalent.
You are to prove N sets are equivalent, using the method above: in each step you can prove a set X is a subset of another set Y, and there are also some sets that are already proven to be subsets of some other sets.
Now you want to know the minimum steps needed to get the problem proved.
Input The input file contains multiple test cases, in each case, the first line contains two integers N <= 20000 and M <= 50000.
Next M lines, each line contains two integers X, Y, means set X in a subset of set Y.
Output For each case, output a single integer: the minimum steps needed.
Sample Input
4 0
3 2
1 2
1 3

Sample Output
4
2
Hint

Case 2: First prove set 2 is a subset of set 1 and then prove set 3 is a subset of set 1. 
强联通缩点:添加几条边成强联通分量:设缩点后所有点中出度为0的点为d_1,入度为0点为d_2,则答案为max(d_1,d_2);
#include
  
   
#include
   
     #include
    
      #include
     
       #include
      
        typedef long long LL; using namespace std; #define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i ) #define REP( i , n ) for ( int i = 0 ; i < n ; ++ i ) #define CLEAR( a , x ) memset ( a , x , sizeof a ) const int maxn=20000+100; const int maxm=100000; struct node{ int u,v; int next; }e[maxm]; int head[maxn],cntE; int DFN[maxn],low[maxn]; int s[maxm],top,index,cnt; int belong[maxn],instack[maxn]; int in[maxn],out[maxn]; int n,m; void init() { top=cntE=0; index=cnt=0; CLEAR(DFN,0); CLEAR(head,-1); CLEAR(instack,0); // CLEAR(belong,0); } void addedge(int u,int v) { e[cntE].u=u;e[cntE].v=v; e[cntE].next=head[u]; head[u]=cntE++; } void Tarjan(int u) { DFN[u]=low[u]=++index; instack[u]=1; s[top++]=u; for(int i=head[u];i!=-1;i=e[i].next) { int v=e[i].v; if(!DFN[v]) { Tarjan(v); low[u]=min(low[u],low[v]); } else if(instack[v]) low[u]=min(low[u],DFN[v]); } int v; if(DFN[u]==low[u]) { cnt++; do{ v=s[--top]; belong[v]=cnt; instack[v]=0; }while(u!=v); } } void work() { REPF(i,1,n) if(!DFN[i]) Tarjan(i); if(cnt<=1) { puts("0"); return ; } CLEAR(in,0); CLEAR(out,0); for(int i=0;i
       
        

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇HDU 1203 I NEED A OFFER!(dp) 下一篇UVA 103 Stacking Boxes (DP)

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·Python爬虫教程(从 (2025-12-26 16:49:14)
·【全269集】B站最详 (2025-12-26 16:49:11)
·Python爬虫详解:原 (2025-12-26 16:49:09)
·Spring Boot Java: (2025-12-26 16:20:19)
·Spring BootでHello (2025-12-26 16:20:15)