zoukankan      html  css  js  c++  java
  • poj 3180 The Cow Prom(tarjan+缩点 easy)

    Description
    The N (2 <= N <= 10,000) cows are so excited: it's prom night! They are dressed in their finest gowns, complete with corsages and new shoes. They know that tonight they will each try to perform the Round Dance. 
    
    Only cows can perform the Round Dance which requires a set of ropes and a circular stock tank. To begin, the cows line up around a circular stock tank and number themselves in clockwise order consecutively from 1..N. Each cow faces the tank so she can see the other dancers. 
    
    They then acquire a total of M (2 <= M <= 50,000) ropes all of which are distributed to the cows who hold them in their hooves. Each cow hopes to be given one or more ropes to hold in both her left and right hooves; some cows might be disappointed. 
    
    For the Round Dance to succeed for any given cow (say, Bessie), the ropes that she holds must be configured just right. To know if Bessie's dance is successful, one must examine the set of cows holding the other ends of her ropes (if she has any), along with the cows holding the other ends of any ropes they hold, etc. When Bessie dances clockwise around the tank, she must instantly pull all the other cows in her group around clockwise, too. Likewise, 
    if she dances the other way, she must instantly pull the entire group counterclockwise (anti-clockwise in British English). 
    
    Of course, if the ropes are not properly distributed then a set of cows might not form a proper dance group and thus can not succeed at the Round Dance. One way this happens is when only one rope connects two cows. One cow could pull the other in one direction, but could not pull the other direction (since pushing ropes is well-known to be fruitless). Note that the cows must Dance in lock-step: a dangling cow (perhaps with just one rope) that is eventually pulled along disqualifies a group from properly performing the Round Dance since she is not immediately pulled into lockstep with the rest. 
    
    Given the ropes and their distribution to cows, how many groups of cows can properly perform the Round Dance? Note that a set of ropes and cows might wrap many times around the stock tank.

    Input

    Line 1: Two space-separated integers: N and M 
    
    Lines 2..M+1: Each line contains two space-separated integers A and B that describe a rope from cow A to cow B in the clockwise direction.

    Output

    Line 1: A single line with a single integer that is the number of groups successfully dancing the Round Dance.

    Sample Input

    5 4
    2 4
    3 5
    1 2
    4 1

    Sample Output

    1

    Hint

    Explanation of the sample: 
    
    ASCII art for Round Dancing is challenging. Nevertheless, here is a representation of the cows around the stock tank: 
           _1___
    
          /**** 
    
       5 /****** 2
    
      / /**TANK**|
    
       ********/
    
        ******/  3
    
         4____/  /
    
         \_______/
    Cows 1, 2, and 4 are properly connected and form a complete Round Dance group. Cows 3 and 5 don't have the second rope they'd need to be able to pull both ways, thus they can not properly perform the Round Dance.

    Source

     
    用tarjan求出强连通分量后,用个map数组统计每个强连通分量的个数,要求强连通分量的子元素大于1(即至少两个)才行
     
      1 #include<iostream>
      2 #include<cstdio>
      3 #include<cstring>
      4 #include<stack>
      5 #include<vector>
      6 #include<map>
      7 using namespace std;
      8 #define N 100006
      9 int n,m;
     10 int tot;
     11 
     12 int head[N];
     13 int vis[N];
     14 int tt;
     15 int scc;
     16 stack<int>s;
     17 int dfn[N],low[N];
     18 int col[N];
     19 
     20 struct Node
     21 {
     22     int from;
     23     int to;
     24     int next;
     25 }edge[N<<6];
     26 void init()
     27 {
     28     tot=0;
     29     scc=0;
     30     tt=0;
     31     memset(head,-1,sizeof(head));
     32     memset(dfn,-1,sizeof(dfn));
     33     memset(low,0,sizeof(low));
     34     memset(vis,0,sizeof(vis));
     35     memset(col,0,sizeof(col));
     36 }
     37 void add(int s,int u)//邻接矩阵函数
     38 {
     39     edge[tot].from=s;
     40     edge[tot].to=u;
     41     edge[tot].next=head[s];
     42     head[s]=tot++;
     43 }
     44 void tarjan(int u)//tarjan算法找出图中的所有强连通分支
     45 {
     46     dfn[u] = low[u]= ++tt;
     47     vis[u]=1;
     48     s.push(u);
     49     int cnt=0;
     50     for(int i=head[u];i!=-1;i=edge[i].next)
     51     {
     52         int v=edge[i].to;
     53         if(dfn[v]==-1)
     54         {
     55         //    sum++;
     56             tarjan(v);
     57             low[u]=min(low[u],low[v]);
     58         }
     59         else if(vis[v]==1)
     60           low[u]=min(low[u],dfn[v]);
     61     }
     62     if(dfn[u]==low[u])
     63     {
     64         int x;
     65         scc++;
     66         do{
     67             x=s.top();
     68             s.pop();
     69             col[x]=scc;
     70             vis[x]=0;
     71         }while(x!=u);
     72     }
     73 }
     74 int main()
     75 {
     76     while(scanf("%d%d",&n,&m)==2)
     77     {
     78         init();
     79         for(int i=0;i<m;i++){
     80             int x,y;
     81             scanf("%d%d",&x,&y);
     82             add(x,y);
     83         }
     84 
     85         for(int i=1;i<=n;i++)
     86         {
     87             if(dfn[i]==-1)
     88             {
     89                 tarjan(i);
     90             }
     91         }
     92        //printf("%d
    ",scc);
     93        map<int,int> mp;
     94        for(int i=1;i<=n;i++){
     95             mp[col[i]]++;
     96        }
     97        int ans=0;
     98        for(int i=1;i<=scc;i++){
     99            if(mp[i]>1) ans++;
    100        }
    101        printf("%d
    ",ans);
    102     }
    103     return 0;
    104 }
    View Code
  • 相关阅读:
    某个sql帖子的答题
    JQuery hide
    JQuery tr 循环,删除td
    JQuery Disabled
    QueryString大小设置
    Silverlight HelloWorld
    USB HID通讯流程
    动态调用c++dll(转)
    VB应用程序调用c++编写的动态库(dll)(转)
    读取图像
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/4782366.html
Copyright © 2011-2022 走看看