1654: [Usaco2006 Jan]The Cow Prom 奶牛舞会
Posted tobichi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1654: [Usaco2006 Jan]The Cow Prom 奶牛舞会相关的知识,希望对你有一定的参考价值。
1654: [Usaco2006 Jan]The Cow Prom 奶牛舞会
Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 471 Solved: 339
[Submit][Status][Discuss]
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
2 4
3 5
1 2
4 1
INPUT DETAILS:
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____/ /
\_______/
Sample Output
1
思路;
统计点数不为一的强连通分量数量即可, !******!
#include <cstdio> #include <cstring> #include <algorithm> #include <iostream> #include <stack> #include <cctype> #define ms(a) (memset(a, 0, sizeof(a))) #define min(a, b) (a<b?a:b) using namespace std; const int N = 111000, M = 310100; int head[N], to[M], nxt[M], cnt; int dfn[N], low[N], place[N], tot; int ins[N], idx; int ind[N]; stack<int>s; int x[M], y[M]; int num[N]; inline char nc() { static char buf[100000], *p1, *p2; return p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000 ,stdin), p1==p2)?EOF:*p1++; } inline char gc() { char c = nc(); while(isspace(c)) c = nc(); return c; } inline int read() { int x ; scanf("%d", &x); return x; /*char c = nc(); while(!isdigit(c))c=nc(); while(isdigit(c)) {x=(x<<3)+(x<<1)+(c^48), c=nc();} return x;*/ } void add(int x, int y) { to[++cnt] = y; nxt[cnt] = head[x]; head[x] = cnt; } void Tarjan(int p) { dfn[p] = low[p] = ++idx; s.push(p); ins[p] = 1; for(int i=head[p];i;i=nxt[i]) { if(!dfn[to[i]]) { Tarjan(to[i]); low[p] = min(low[p], low[to[i]]); } else if(ins[to[i]]) { low[p] = min(low[p], dfn[to[i]]); } } if(low[p]==dfn[p]) { tot++; int t = 0; while(t!=p) { t = s.top();s.pop(); ins[t] = 0; place[t] = tot; num[tot]++; } } } int main() { int n = read(), m = read(); for(int i=1;i<=m;i++) { x[i] = read(), y[i] = read(); add(x[i], y[i]); } for(int i=1;i<=n;i++) if(!dfn[i]) Tarjan(i); int ans = 0; for(int i=1;i<=tot;i++) { if(num[i]>1)ans++; } printf("%d ", ans); }
以上是关于1654: [Usaco2006 Jan]The Cow Prom 奶牛舞会的主要内容,如果未能解决你的问题,请参考以下文章
bzoj 1654: [Usaco2006 Jan]The Cow Prom 奶牛舞会tarjan
BZOJ 1719--[Usaco2006 Jan] Roping the Field 麦田巨画
BZOJ 1656 [Usaco2006 Jan] The Grove 树木:bfs射线法
1718: [Usaco2006 Jan] Redundant Paths 分离的路径