前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >1648: [Usaco2006 Dec]Cow Picnic 奶牛野餐

1648: [Usaco2006 Dec]Cow Picnic 奶牛野餐

作者头像
HansBug
发布2018-04-10 16:19:14
6290
发布2018-04-10 16:19:14
举报
文章被收录于专栏:HansBug's LabHansBug's Lab

1648: [Usaco2006 Dec]Cow Picnic 奶牛野餐

Time Limit: 5 Sec  Memory Limit: 64 MB

Submit: 432  Solved: 270

[Submit][Status]

Description

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)条有向路连接,而且不存在起点和终点相同的有向路.她们进餐的地点必须是所有奶牛都可到达的地方.那么,有多少这样的牧场呢?

Input

* 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.

 第1行输入K,N,M.接下来K行,每行一个整数表示一只奶牛所在的牧场编号.接下来M行,每行两个整数,表示一条有向路的起点和终点

Output

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

    所有奶牛都可到达的牧场个数

Sample Input

2 4 4 2 3 1 2 1 4 2 3 3 4 INPUT DETAILS: 4<--3 ^ ^ | | | | 1-->2 The pastures are laid out as shown above, with cows in pastures 2 and 3.

Sample Output

2 牧场3,4是这样的牧场.

HINT

Source

Silver

 题解:尼玛这道题居然都被卡了一次——原因很逗比,因为中间BFS当此点访问过时应该跳过,结果我一开始脑抽写了个 if c[p^.g]=1 then continue; 仔细想想,当这种情况下p指针还没等跳到下一个就continue了啊,不死循环才怪!!!(phile:多大了还犯这种错!!!)。。。然后没别的了,就是对于每个牛都用BFS或者DFS来搜一编能够到达的点,然后没了——复杂度才O(K(N+M))肯定没问题。。。(所以一开始当我看到红色的TLE时真心被吓到了QAQ)

代码语言:javascript
复制
 1 type
 2     point=^node;
 3     node=record
 4                g:longint;
 5                next:point;
 6     end;
 7 
 8 var
 9    i,j,k,l,m,n,f,r:longint;
10    P:point;
11    a:array[0..1050] of point;
12    b,c,d,e:array[0..1050] of longint;
13 procedure add(x,y:longint);inline;
14           var p:point;
15           begin
16                new(p);
17                p^.g:=y;
18                p^.next:=a[x];
19                a[x]:=p;
20           end;
21 begin
22      readln(e[0],n,m);
23      for i:=1 to n do
24          begin
25               d[i]:=1;
26               a[i]:=nil;
27          end;
28      for i:=1 to e[0] do
29               readln(e[i]);
30      for i:=1 to m do
31          begin
32               readln(j,k);
33               add(j,k);
34          end;
35      for i:=1 to e[0] do
36          begin
37               fillchar(c,sizeof(c),0);
38               fillchar(b,sizeof(b),0);
39               c[e[i]]:=1;
40               b[1]:=e[i];
41               f:=1;r:=2;
42               while f<r do
43                     begin
44                          p:=a[b[f]];
45                          while p<>nil do
46                                begin
47                                     if c[p^.g]=0 then
48                                        begin
49                                             c[p^.g]:=1;
50                                             b[r]:=p^.g;
51                                             inc(r);
52                                        end;
53                                     p:=p^.next;
54                                end;
55                          inc(f);
56                     end;
57               for j:=1 to n do
58                   d[j]:=d[j]*c[j];
59          end;
60      l:=0;
61      for i:=1 to n do l:=l+d[i];
62      writeln(l);
63 end.
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-12-16 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1648: [Usaco2006 Dec]Cow Picnic 奶牛野餐
  • Description
  • Input
  • Output
  • Sample Input
  • Sample Output
  • HINT
  • Source
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档