BZOJ 1648 [Usaco2006 Dec]Cow Picnic 奶牛野餐
Posted Driver_Lao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1648 [Usaco2006 Dec]Cow Picnic 奶牛野餐相关的知识,希望对你有一定的参考价值。
【题意概述】
K(1≤K≤100)只奶牛分散在N(1≤N≤1000)个牧场.现在她们要集中起来进餐.牧场之间有M(1≤M≤10000)条有向路连接,而且不存在起点和终点相同的有向路.她们进餐的地点必须是所有奶牛都可到达的地方.那么,有多少这样的牧场呢?
【题解】
一看题。。
对于每个点,把它能到达的点的cnt都加上它的点权(点权就是这个点有的奶牛的只数),最后看有多少个点的cnt等于k即可。
1 #include<cstdio> 2 #include<algorithm> 3 #include<cstring> 4 #define rg register 5 #define N 1010 6 using namespace std; 7 int n,m,k,tot,ans,now,last[N],cnt[N],val[N]; 8 bool v[N]; 9 struct edge{ 10 int to,pre; 11 }e[10010]; 12 inline int read(){ 13 int k=0,f=1; char c=getchar(); 14 while(c<‘0‘||c>‘9‘)c==‘-‘&&(f=-1),c=getchar(); 15 while(‘0‘<=c&&c<=‘9‘)k=k*10+c-‘0‘,c=getchar(); 16 return k*f; 17 } 18 void dfs(int x){ 19 v[x]=1; cnt[x]+=val[now]; 20 for(rg int i=last[x],to;i;i=e[i].pre) if(!v[to=e[i].to]) dfs(to); 21 } 22 int main(){ 23 k=read(); n=read(); m=read(); 24 for(rg int i=1,x;i<=k;i++) x=read(),val[x]++; 25 for(rg int i=1;i<=m;i++){ 26 int u=read(),v=read(); 27 e[++tot]=(edge){v,last[u]}; last[u]=tot; 28 } 29 for(rg int i=1;i<=n;i++){ 30 memset(v,0,sizeof(v)); 31 now=i; dfs(i); 32 } 33 for(rg int i=1;i<=n;i++) if(cnt[i]==k) ans++; 34 printf("%d\n",ans); 35 return 0; 36 }
以上是关于BZOJ 1648 [Usaco2006 Dec]Cow Picnic 奶牛野餐的主要内容,如果未能解决你的问题,请参考以下文章
bzoj 1648: [Usaco2006 Dec]Cow Picnic 奶牛野餐dfs
BZOJ 1648 [Usaco2006 Dec]Cow Picnic 奶牛野餐
bzoj1648 / P2853 [USACO06DEC]牛的野餐Cow Picnic