POJ - 3180 The Cow Prom 【强联通分量】

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.
 
 1 #include<map>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<iostream>
 5 #include<cstdlib>
 6 #include<queue>
 7 #include<stack>
 8 #include<vector>
 9 using namespace std;
10 #define read(x) scanf("%lld",&x)
11 #define out(x) printf("%lld",&x)
12 #define cfread(x) scanf("%I64d",&x)
13 #define cfout(x) printf("%I64d",&x)
14 #define mian main
15 #define min(x,y) (x<y?x:y)
16 #define max(x,y) (x<y?y:x)
17 #define f(i,p,q,t) for(i=p;i<q;i+=t)
18 #define MAXN 110000
19 #define inf 0x3f3f3f3f
20 #define mem(x,t) memset(x,t,sizeof(x));
21 #define T true
22 #define F false
23 #define def -1*inf
24 typedef long long ll;
25 typedef long long LL;
26 typedef double dd;
27 int m,n;
28 vector<int> maps[MAXN];
29 int vis[MAXN];//点是否在栈中
30 int dfn[MAXN];
31 int low[MAXN];
32 int ans = 0;
33 stack<int> team;
34 void dfs(int x,int deep){
35     dfn[x] = deep;
36     low[x] = deep;
37     vis[x] = 1;
38     team.push(x);
39     for(int i=0;i<maps[x].size();i++){
40         int point = maps[x][i];
41         if(dfn[point]>0){
42             if(vis[point]!=0){
43                 low[x] = min(low[x],low[point]);
44             }
45         }
46         else{
47             dfs(point,deep+1);
48             low[x] = min(low[x],low[point]);
49         }
50     }
51     if(low[x]==dfn[x]){
52         int gs=0;
53         while(!team.empty()){
54             int p = team.top();
55             team.pop();
56             vis[p]=0;
57             gs+=1;
58             if(p==x){ 
59                 break;
60             }
61         }
62         if(gs>1)
63             ans+=1;
64     }
65 }
66 int main(){
67     scanf("%d%d",&n,&m);
68     for(int i=1;i<=m;i++){
69         int p,q;
70         scanf("%d%d",&p,&q);
71         maps[p].push_back(q);
72     }
73     for(int i=1;i<=n;i++){
74         if(dfn[i]!=0);
75         else
76             dfs(i,1);
77     }
78     printf("%d",ans);
79     return 0;
80 }

猜你喜欢

转载自www.cnblogs.com/xfww/p/8971158.html