题目描述

The cows are having a picnic! Each of Farmer John's K (1 ≤ K ≤ 100) cows is grazing in one of N (1 ≤ N ≤ 1,000) pastures, conveniently numbered 1...N. The pastures are connected by M (1 ≤ M ≤ 10,000) one-way paths (no path connects a pasture to itself).

The cows want to gather in the same pasture for their picnic, but (because of the one-way paths) some cows may only be able to get to some pastures. Help the cows out by figuring out how many pastures are reachable by all cows, and hence are possible picnic locations.

K(1≤K≤100)只奶牛分散在N(1≤N≤1000)个牧场.现在她们要集中起来进餐.牧场之间有M(1≤M≤10000)条有向路连接,而且不存在起点和终点相同的有向路.她们进餐的地点必须是所有奶牛都可到达的地方.那么,有多少这样的牧场呢?

输入输出格式

输入格式:

Line 1: Three space-separated integers, respectively: K, N, and M

Lines 2..K+1: Line i+1 contains a single integer (1..N) which is the number of the pasture in which cow i is grazing.

Lines K+2..M+K+1: Each line contains two space-separated integers, respectively A and B (both 1..N and A != B), representing a one-way path from pasture A to pasture B.

输出格式:

Line 1: The single integer that is the number of pastures that are reachable by all cows via the one-way paths.

输入输出样例

输入样例#1: 复制

2 4 4
2
3
1 2
1 4
2 3
3 4
输出样例#1: 复制

2

说明

The cows can meet in pastures 3 or 4.

思路:搜索即可,但是不明白深搜为什么会TLE。

#include<queue>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define MAXN 1010
using namespace std;
int k,n,m,tot,ans;
int vis[MAXN],num[],bns[MAXN];
int to[*],net[*],head[MAXN];
void add(int u,int v){
to[++tot]=v;net[tot]=head[u];head[u]=tot;
}
void bfs(int x){
queue<int>que;
que.push(x);
while(!que.empty()){
int now=que.front();
que.pop();
for(int i=head[now];i;i=net[i])
if(!vis[to[i]]){
bns[to[i]]++;
vis[to[i]]=;
que.push(to[i]);
}
}
}
int main(){
scanf("%d%d%d",&k,&n,&m);
for(int i=;i<=k;i++)
scanf("%d",&num[i]);
for(int i=;i<=m;i++){
int x,y;
scanf("%d%d",&x,&y);
add(x,y);
}
for(int i=;i<=k;i++){
bns[num[i]]++;vis[num[i]]=;
bfs(num[i]);memset(vis,,sizeof(vis));
}
for(int i=;i<=n;i++)
if(bns[i]==k) ans++;
cout<<ans;
}

最新文章

  1. vagrant学习笔记
  2. gdb调试方法
  3. ASP.Net的导出Excel的快速方法,DataTable导出Excel(亲测,非原创)
  4. DragLayout: QQ5.0侧拉菜单的新特效
  5. Jquery easyui datagrid 删除多行问题
  6. Java之--Java语言基础组成—函数
  7. 【C语言】-一维数组
  8. EXTJS 4.2 资料 控件之checkboxgroup的用法(静态数据)
  9. 3.2. Grid Search: Searching for estimator parameters
  10. Light OJ 1104 第六周F题
  11. poj 3753 Training little cats_矩阵快速幂
  12. Linux shell-tail
  13. Vue常用经典开源项目汇总参考-海量
  14. JArray数组转换为DataTable
  15. 常用的一些cmd命令
  16. Sql语句中IN和exists的区别及应用
  17. g++编译多个文件
  18. Java03-Java语法基础(二)运算符
  19. 等到花儿也谢了的await
  20. C++ template —— 智能指针(十二)

热门文章

  1. [CREC2007/CQOI2014]robotic sort
  2. C# 类型转换方法
  3. 每天学点Linux命令:倒叙打印文件第二行的前100个大写字母
  4. Kali Linux的介绍
  5. java 对readLine扩展添加行号样式
  6. MySQL与Sqlserver数据获取
  7. 专题八:P2P编程
  8. 获取Spring容器中的Bean协助调试
  9. 创建对象——单例(Singleton)模式
  10. 从React看weight开发