码迷,mamicode.com
首页 > 其他好文 > 详细

CSU 1004

时间:2014-07-28 11:35:50      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   io   for   

1004: Xi and Bo

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 273  Solved: 93
[Submit][Status][Web Board]

Description

Bo has been in Changsha for four years. However he spends most of his time staying his small dormitory. One day he decides to get out of the dormitory and see the beautiful city. So he asks to Xi to know whether he can get to another bus station from a bus station. Xi is not a good man   because he doesn’t tell Bo directly. He tells to Bo about some buses’ routes. Now Bo turns to you and he hopes you to tell him whether he can get to another bus station from a bus station directly according to the Xi’s information.

Input

The first line of the input contains a single integer T (0<T<30) which is the number of test cases. For each test case, the first contains two different numbers representing the starting station and the ending station that Bo asks. The second line is the number n (0<n<=50) of buses’ routes which Xi tells. For each of the following n lines, the first number m (2<=m<= 100) which stands for the number of bus station in the bus’ route. The remaining m numbers represents the m bus station. All of the bus stations are represented by a number, which is between 0 and 100.So you can think that there are only 100 bus stations in Changsha.

Output

 

For each test case, output the “Yes” if Bo can get to the ending station from the starting station by taking some of buses which Xi tells. Otherwise output “No”. One line per each case. Quotes should not be included.

 

Sample Input

3
0 3
3
3 1 2 3
3 4 5 6
3 1 5 6
0 4
2
3 0 2 3
2 2 4
3 2
1
4 2 1 0 3

Sample Output

No
Yes
Yes

HINT

 

Source

中南大学第五届大学生程序设计竞赛-热身赛

 

一开始想到了并查集

后来发现不是两个两个的输入

又想到DFS

其实可以把他变成两个两个的就好

 

 1 #include <iostream>
 2 
 3 using namespace std;
 4 int fa[101];
 5 void init()
 6 {
 7     for(int i =0;i<101;i++)
 8     {
 9         fa[i]=i;
10     }
11 }
12 
13 int find(int x)
14 {
15     while(x!=fa[x])
16         x = fa[x];
17     return x;
18 }
19 
20 void merge(int x,int y)
21 {
22     int a = find(x);
23     int b = find(y);
24     if(a!=b)
25     {
26         fa[a]=b;
27     }
28 }
29 int main()
30 {
31     int T,start,end,n,m;
32     cin.sync_with_stdio(false);
33     cin>>T;
34     while(T--)
35     {
36         init();
37         cin>>start>>end>>n;
38         for(int i=0;i<n;i++)
39         {
40             cin>>m;
41             int x,y;
42             cin>>x;
43             for(int i=1;i<m;i++)
44             {
45                 cin>>y;
46                 merge(x,y);
47             }
48         }
49         if(find(start)!=find(end))
50             cout<<"No"<<endl;
51         else
52             cout<<"Yes"<<endl;
53 
54     }
55      return 0;
56 }

 

实现代码

 

CSU 1004,布布扣,bubuko.com

CSU 1004

标签:des   style   blog   http   color   os   io   for   

原文地址:http://www.cnblogs.com/Run-dream/p/3872335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!