http://poj.org/problem?id=3180
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 1428 | Accepted: 903 |
Description
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
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
Sample Input
5 4
2 4
3 5
1 2
4 1
Sample Output
1 求有多少个大于2的联通分量
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#include<vector>
#define N 10010
#define min(a, b)(a < b ? a : b); using namespace std; vector<vector<int> >G; int low[N], dfn[N], Stack[N];
int n, m, num, Time, top;
bool Instack[N]; void Init()
{
G.clear();
G.resize(n + );
memset(low, , sizeof(low));
memset(dfn, , sizeof(dfn));
memset(Stack, , sizeof(Stack));
memset(Instack, false, sizeof(Instack));
Time = top = num = ;
} void Tarjan(int u)
{
int len, v, i, k = ;
low[u] = dfn[u] = ++Time;
Stack[top++] = u;
Instack[u] = true;
len = G[u].size();
for(i = ; i < len ; i++)
{
v = G[u][i];
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])
{
do
{
k++;
v = Stack[--top];
Instack[v] = false;
}while(v != u);
if(k >= )
num++;
}
} void Solve()
{
int i;
for(i = ; i <= n ; i++)
if(!low[i])
Tarjan(i);
} int main()
{
int a, b;
while(~scanf("%d%d", &n, &m))
{
Init();
while(m--)
{
scanf("%d%d", &a, &b);
G[a].push_back(b);
}
Solve();
printf("%d\n", num);
}
return ;
}