bzoj1612[Usaco2008 Jan]Cow Contest奶牛的比赛
题意:
n头能力不一样的奶牛,给出m对奶牛之间的能力比较结果,要求判断多少奶牛的能力排名已经确定。n≤100,m≤4500。
题解:
把每个结果看成一条有向边,对每头奶牛dfs,求出每头奶牛赢几头奶牛,输几头奶牛。如果赢数加输数等于n-1,那么这头奶牛的排名就可以确定。
代码:
1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #define maxn 101 5 #define inc(i,j,k) for(int i=j;i<=k;i++) 6 using namespace std; 7 8 inline int read(){ 9 char ch=getchar(); int f=1,x=0; 10 while(ch<'0'||ch>'9'){if(ch=='-')f=-1; ch=getchar();} 11 while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar(); 12 return f*x; 13 } 14 struct e{int t,n;}; e es[maxn*45]; int ess,g[maxn]; bool vis[maxn]; 15 void pe(int f,int t){es[++ess]=(e){t,g[f]}; g[f]=ess;} 16 int win[maxn],lose[maxn],n,m,ans; 17 void dfs(int st,int x){ 18 for(int i=g[x];i;i=es[i].n)if(!vis[es[i].t]){ 19 lose[es[i].t]++; win[st]++; vis[es[i].t]=1; dfs(st,es[i].t); 20 } 21 } 22 int main(){ 23 n=read(); m=read(); 24 inc(i,1,m){int a=read(),b=read(); pe(a,b);} 25 inc(i,1,n)memset(vis,0,sizeof(vis)),dfs(i,i); 26 inc(i,1,n)if(win[i]+lose[i]==n-1)ans++; printf("%d",ans); return 0; 27 }
20160731